通用写法 :
(function (){
"use strict";
})();
好处:
1.代码严谨。对一些错误的用法及时报错。
2.提升运行性能。及时垃圾回收。
3.易于维护。方便后期js升级。
http://www.ruanyifeng.com/blog/2013/01/javascript_strict_mode.html
https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Strict_mode