718 B
718 B
convert to text
Change the value of any type into a text string.
convertToText(123)
Parameters
Returns
- a string that is a text representation of value.
Example #example
Convert a boolean and a number value into strings and join them in a sentence.
let myBoolean = false
let myNumber = 0
myBoolean = true
myNumber = 123
let myString = "It is " + convertToText(myBoolean) + " that " + convertToText(myNumber) + " is now a string!"