Files
30-seconds-of-code/javascript/snippets/node-list-to-array.md
2023-05-01 22:35:56 +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 ]