Files
30-seconds-of-code/snippets/nodeListToArray.md
Isabelle Viktoria Maciohsek 27c168ce55 Bake date into snippets
2021-06-13 13:55:00 +03:00

397 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
nodeListToArray browser,array,beginner 2018-05-06T18:11:21+03:00 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 ]