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
Name | Type | Required | Description |
---|---|---|---|
value | string | ✔️ | 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
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.