Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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
 
PREVIOUS NEXT
Tagged: #javascript #toggle #variable
ADD COMMENT
Topic
Name
2+8 =