js严格模式

通用写法 :

  (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

 

posted @ 2018-09-08 11:28  柚子乌拉拉  Views(86)  Comments(0Edit  收藏  举报