本文主要是介绍javascript中写插件用use strict的好处,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
function(){
"use strict";
//....往下的代码都会开启js strict 模式
}
use js strict mode 的好处:
point1-检查json中重复的键:
e.g :
{
a:1,a:1 //会报错了
}
point2-检查函数中重复的参数:
function(arg1,arg1){}// prompt incorrect arguments
point3-check the undeclare variable:
a = 1;// prompt
point4-restrict the arguments object :
function test(arg){
arguments[0] = 1;
alert(arg);
}
test(2)//2, not 1. limit the arguments object overwrite.
brief summary:
暂时只想到以上4点了,大家有更多细节可以给我留言。THX! ^_^
这篇关于javascript中写插件用use strict的好处的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!