Skip to content

JS Global Variables

Quincy Larson edited this page Aug 20, 2016 · 1 revision

JavaScript Global Variables

You should ALWAYS use var to declare your variables (to make locally) else it will install GLOBALLY

JavaScript Best Practices: Avoid Globals

Global Variables are bad

Clone this wiki locally