Array push

1
2
3
4
5
6
7
8
9
10
11
// 类数组
let obj = {
'1': 'a',
'2': 'b',
length: 2,
push: Array.prototype.push
};

// Array.prototype.push.call(obj, 'c');
obj.push('c')
console.log(obj); // { '1': 'a', '2': 'c', length: 3 }