本文共 624 字,大约阅读时间需要 2 分钟。
如果一个对象的所有键名都是正整数或零,并且有length属性,那么这个对象就很像数组,称为伪数组。典型的伪数组有函数的arguments对象,以及大多数 DOM 元素集,还有字符串。
例子1:
获取集合,控制台打印
Array.prototype.slice.call(oUL);
或者 es6 的 Array.from()
Array.from(oUL);
// 一个伪数组var obj = { "0": "aaa", "1": 12, "length": 2, "push": Array.prototype.push, "splice": Array.prototype.splice}// 动态改变length,并且添加新元素到数组末尾this[this.length] = arr;Array.prototype.push = function(arr) { this.length++;}console.log(obj);obj.push("newVal");console.log(obj)
转载地址:http://yopo.baihongyu.com/