标签:cti console array func 原理 his nbsp fun splice
var obj = { ‘2‘ : 3, ‘3‘ : 4, ‘length‘ : 2, ‘splice‘ : Array.prototype.splice, ‘push‘ : Array.prototype.push }; obj.push(1); obj.push(2); console.log(obj) // [empty × 2, 1, 2, splice: ?, push: ?] // 原理 // Array.prototype.push = function(elem){ // this[this.length] = elem; // 当前元素最后位置添加类容 // this.length ++; // 让length 加一 // } // obj[2] = 1; // obj[3] = 2;
标签:cti console array func 原理 his nbsp fun splice
原文地址:https://www.cnblogs.com/xm16/p/10357019.html