boolean.booleanFormat()
True, for a non-zero value; False, otherwise.
boolean.booleanFormat( )
Returns: String
This function does not take any arguments.
Examples
res = true;
writeDump(res.booleanFormat());
writeDump(false.booleanFormat());