Files
30-seconds-of-code/snippets/node-list-to-array.md
2023-04-28 22:29:23 +03:00

390 B

title, type, tags, cover, dateModified
title type tags cover dateModified
NodeList to array snippet
browser
array
colors-mural 2020-10-21T21:54:53+03:00

Converts a NodeList to an array.

  • Use spread operator (...) inside new array to convert a NodeList to an array.
const nodeListToArray = nodeList => [...nodeList];
nodeListToArray(document.childNodes); // [ <!DOCTYPE html>, html ]