ES6-11学习笔记--数组的扩展

类数组 / 伪数组 Array.from() Array.of() copyWithin() fill() includes()   类数组、伪数组例子:
let divs = document.getElementsByTagName('div');
console.log(divs); // HTMLCollection

let divs2 = document.getElementsByClassName('abc');
console.log(divs2); // HTMLCollection

let divs3 = document.querySelectorAll('.xxx');
console.log(divs3); // NodeList

// 我们使用instanceof来验证这些是伪数组:
console.log(divs instanceof Array); // false
console.log(divs2 instanceof Array); // false
console.log(divs3 instanceof Array); // false
HTMLCollection、NodeList等类型都是伪数组。 这里伪数组不能使用push这种数组原有的方法,因为这些类型没有定义push方法。  
上一篇:运算符的优先级


下一篇:多态性之:向下转型及instanceof的使用