toText
Last updated
A value of any type is converted to text type.
value
The value to be converted to text.
Any
-
-
Yes
Returns the converted value as text type.
Text
In this example, we will convert an object to a string and print the result in the console.
Call the function Conversion.toText inside the Log.write function, and then call the function Conversion.toObject inside Conversion.toText
Call the function Conversion.toObject inside the Conversion.toText function and enter the values for the object {name:Johnny, age:27}. (Refer to toObject for more information on using the toObject function.)

The console will print the value passed as a text. In this example, the value printed is {"age":"27","name":"Johnny"}.
Last updated