We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8396d8e commit 4cb656fCopy full SHA for 4cb656f
front-end/dom.md
@@ -86,7 +86,7 @@ A `NodeList` can contain any node type, but an `HTMLCollection` is supposed to o
86
87
**How do you convert an `HTMLCollection` or `NodeList` into an array?**
88
89
-```
+```js
90
const nodelist = document.querySelectorAll('div');
91
// Array.from
92
const divArray = Array.from(nodelist);
0 commit comments