Материал из Module developer
B.isString
to check the initial value for being a string
Syntax
B.isString (operand)
| input | sample | description |
| operand | "String" | type: Operand the initial value |
| output |
| Boolean | type: Boolean the result: 0 - not a string, 1 - a string |
Example:
var check = B.isString("String"); // returns "true"
