convert to text

Change the value of any type into a text string.

convertToText(123)

Parameters

  • value: a value of some type to convert to a string.

Returns

  • a string that is a text representation of value.

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!"

Sea also

parse int, parse float