js如何安全扩展系统函数
2021-02-09 20:18
标签:node contex 导致 context lte 引用 code new 如何 如果直接使用如下方式扩展系统函数,常常会导致冲突,有可能和js函数重名或和第三方引用的js重名 安全扩展系统函数: 客户端调用: js如何安全扩展系统函数 标签:node contex 导致 context lte 引用 code new 如何 原文地址:https://www.cnblogs.com/fanfan-90/p/13055511.htmlArray.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 ) {
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);
上一篇:webpack性能优化2
下一篇:JS实现别踩白块游戏