var obj = {
"0" : 'a',
"1" : 'b',
"2" : 'c',
"length" : 3,
"push" : Array.prototype.push,
"splice" : Array.prototype.splice
}
Array.prototype.push = function(target){
obj[this.length] = target;
obj.length ++;
}
obj.push('c');
obj.push('d');
console.log(obj)
你绝对不了解的类数组
于 2020-08-25 14:21:09 首次发布