我扩展了Array
原型:
if(typeof Array.prototype.filter === 'undefined') Array.prototype.filter = function(fun /*, thisp*/){
var len = this.length;
if(typeof fun != "function") throw new TypeError();
var res = [], thisp = arguments[1];
for(var i=0;i<len;i++){
if(i in this){
var val = this[i]; // in case fun mutates this
if(fun.call(thisp, val, i, this)) res.push(val);
}
}
return res;
};
例如我创建了数组:
var A = [ 1, 2, 3, 4, 5 ];
然后我添加了额外的属性,我将使用:
A.creator = 'Rustam';
A.created = new Date();
如果我将使用for-in
循环,并且浏览器没有内置支持Array.filter
,它将通过A.filter
.
我知道这样:
for(var p in A) {
if (!A.hasOwnProperty(p)) continue
console.log(p)
};
有没有办法在不使用的情况下A.filter
隐藏?for-in
hasOwnProperty
更新回答。浏览器支持:
- IE9+
- FF4+
- 铬合金
- 歌剧 11.6+
- 野生动物园 5+