Files
30-seconds-of-code/snippets/nodeListToArray.md
Isabelle Viktoria Maciohsek 8bf67754ce Make expertise a field
2022-03-01 20:21:45 +02:00

410 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
NodeList to array 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 ]