javascript boolean string code example
Example 1: js is boolean
if (typeof variable === "boolean"){
// variable is a boolean
}
Example 2: boolean as string javascript
bool.toString()
if (typeof variable === "boolean"){
// variable is a boolean
}
bool.toString()