tobool()

Learn how to use the tobool() function to convert an input to a boolean representation.

Convert inputs to boolean (signed 8-bit) representation.

Syntax

tobool(value)

Parameters

NameTypeRequiredDescription
valuestring✔️The value to convert to boolean.

Returns

If conversion is successful, result will be a boolean. If conversion isn’t successful, result will be null.

Example

tobool("true") == true
tobool("false") == false
tobool(1) == true
tobool(123) == true