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