$parseToString
The$parseToString operator converts any value to its string representation.
Input
- A single value of any type
Output
- The string representation of the input value
Examples
Convert Number to String
"123"
Convert Boolean to String
"true"
Convert Null to String
"null"

