标签:javascript
总是使用var声明变量,不然将其变为全局变量。我们要想办法避免全局空间污染。
//bad aaa = new AAA(); //good var aaa = new AAA(); //God bless!
//bad var items = getItems(); goSportsTeam = true ; dragonball = 'z'; //good var items = getItems(); var goSportsTeam = true; var dragonball = 'z'; //God bless!
标签:javascript
原文地址:http://blog.csdn.net/princeterence/article/details/45744659