390 B
390 B
title, type, tags, cover, dateModified
| title | type | tags | cover | dateModified | ||
|---|---|---|---|---|---|---|
| NodeList to array | snippet |
|
colors-mural | 2020-10-21T21:54:53+03:00 |
Converts a NodeList to an array.
- Use spread operator (
...) inside new array to convert aNodeListto an array.
const nodeListToArray = nodeList => [...nodeList];
nodeListToArray(document.childNodes); // [ <!DOCTYPE html>, html ]