Bool to String
Module Info:
moduleType: "internal",
moduleName: "boolToString"
Description
The boolToNumber
function receives a boolean value and returns its string equivalent.
Inputs
Name | Type | Required |
---|---|---|
boolean | boolean | ✔ |
Outputs
Name | Type |
---|---|
result | number |
Examples
Inputs | Outputs |
---|---|
boolean | result |
true | "true" |
false | "false" |