码迷,mamicode.com
首页 > Web开发 > 详细

js如何安全扩展系统函数

时间:2020-06-06 18:59:58      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:node   contex   导致   context   lte   引用   code   new   如何   

如果直接使用如下方式扩展系统函数,常常会导致冲突,有可能和js函数重名或和第三方引用的js重名

Array.prototype.first=function(){};

安全扩展系统函数:

var ArrayEx = (function(){
  function ArrayEx(array){
    this.array = array || [];
  }
  ArrayEx.prototype.first= function (filter, context) {//获取首个数组元素
    filter = filter || function () { return true; };
    for (var i = 0, len = this.array.length; i < len; i++) {
        if (filter.call(context, i, this.array[i])) {
            return this.array[i];
        }
    }
    return null;
};

return ArrayEx;
}());

客户端调用:

var node = new ArrayEx([1,2,3]).first(function(i,item){
  return item===3;
});
alert(node);

 

js如何安全扩展系统函数

标签:node   contex   导致   context   lte   引用   code   new   如何   

原文地址:https://www.cnblogs.com/fanfan-90/p/13055511.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!