boolean.toString()
The boolean.toString() method returns "1" or "0" depending on the value of the boolean.
Example
var boolval = true;
Â
return boolval.toString();
// returns "1"
The boolean.toString() method returns "1" or "0" depending on the value of the boolean.
var boolval = true;
Â
return boolval.toString();
// returns "1"
Some documentation pages have recently moved to a new section: Profound AppDev. If you are having trouble finding specific pages, try the documentation search capability or reach out to our Support team!