Overview
The toString() function converts a value to a string.
Syntax
toString(value)
Augment |
Type |
Description |
|---|---|---|
value |
Any | The value to be converted |
Return type: String
Example of Result
return toString([24, 20, 12])
Result: [24,20,12]
return toString(0.000000001)
Result: 1e-09