我是靠谱客的博主 健忘钢笔,最近开发中收集的这篇文章主要介绍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的好处的全部内容,希望文章能够帮你解决javascript中写插件用use strict的好处所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(63)

评论列表共有 0 条评论

立即
投稿
返回
顶部