string
Computes the string representation of the given number, i.e. converts the number supplied as argument into a string.
Signature
string(number:number) -> string  | 
Parameters
Name  | Type  | Description  | 
|---|---|---|
number  | number  | The number to be convert to string.  | 
Examples
The following expression converts the numeric value 1 into the string "1":
string(1)  |