how to toggle between true and false in a function in js code example
Example: 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
var thing = true; //try changing this to false
thing = !thing; //the variable will go from true to false, or from false to true