Skip to content

类数组转化为数组

Posted on:2021年7月7日 at 00:12

类数组是具有length属性,但不具有数组原型上的方法。常见的类数组有arguments、DOM操作方法返回的结果。


Array.from(document.querySelectorAll("div"));
Array.prototype.slice.call(document.querySelectorAll("div"));
[...document.querySelectorAll("div")];
Array.prototype.concat.apply([], document.querySelectorAll("div"));
原文转自:https://fe.ecool.fun/topic/4af06e53-d9ca-4a28-8067-d4ffc3691827