toggle boolean code example
Example 1: javascript toggle variable
var thing = true; //try changing this to false
thing = !thing; //the variable will go from true to false, or from false to true
Example 2: toggle bool
myBool = !myBool;
var thing = true; //try changing this to false
thing = !thing; //the variable will go from true to false, or from false to true
myBool = !myBool;