Mar 13 · 3 min read · The Bug That Started It All I was working with DOM elements, and I wanted to fetch all the li items from the list. I used querySelectorAll(), which returned a NodeList of length 3, and then I appended
Join discussion
Mar 13 · 10 min read · In the early days of web, browsers like Internet Explorer and Netscape Navigator had their own ways of exposing HTML elements to JavaScript. But there was no easy way for developers to access things l
Join discussion
Mar 23, 2023 · 4 min read · HTMLCollection is a set or group of HTML elements in an array-like manner. HTMLCollection exists in document order, based on how it is returned. Just like an array it has a length property and methods for accessing each HTML item in its collection. H...
Join discussion