js toggle boolean

JavaScript
var thing = true; //try changing this to false
thing = !thing; //the variable will go from true to false, or from false to truebool = !bool;
Source

Also in JavaScript: