javascript booleans code example
Example 1: js is boolean
if (typeof variable === "boolean"){
// variable is a boolean
}
Example 2: boolean
bool x = true;
if (x) { print ("Hello") }
if (typeof variable === "boolean"){
// variable is a boolean
}
bool x = true;
if (x) { print ("Hello") }