将 NodeList 转换为数组

NodeList 转换为数组。

  • 使用扩展运算符 (...) 在新数组中将 NodeList 转换为数组。
const nodeListToArray = nodeList => [...nodeList];

nodeListToArray(document.childNodes); // [ <!DOCTYPE html>, html ]