Files
30-seconds-of-code/js/s/node-list-to-array.md
Angelos Chalaris 5c913d20bd Reorganize snippets
2023-05-03 21:19:02 +03:00

411 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
NodeList to array snippet javascript
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 ]