类数组转数组
2024年3月19日小于 1 分钟
一、Array.from
Array.from(document.querySelectorAll('div'))二、Array.prototype.slice.call()
Array.prototype.slice.call(document.querySelectorAll('div'))三、拓展运算符
[...document.querySelectorAll('div')]Array.from(document.querySelectorAll('div'))Array.prototype.slice.call(document.querySelectorAll('div'))[...document.querySelectorAll('div')]