js boolean code example
Example 1: js is boolean
if (typeof variable === "boolean"){
// variable is a boolean
}
Example 2: change true to false js
var thing = true; //try changing this to false
thing = !thing; //the variable will go from true to false, or from false to true
Example 3: js string to boolean
// Do
var isTrueSet = (myValue == 'true');
// Or
var isTrueSet = (myValue === 'true');
Example 4: boolean
bool x = true;
if (x) { print ("Hello") }