BooleanFormat()

True, for a non-zero value; False, otherwise.

BooleanFormat( value=any );

Returns: String

Argument Description
value
any, required

a value that can be casted to a boolean

Examples

writeDump(BooleanFormat(00123));//True
writeDump(BooleanFormat(000));//False

See also