Understanding HTMLCollection and NodeList in JavaScript
1. HTMLCollection
An HTMLCollection is a collection of HTML elements.
How to get HTMLCollection
document.getElementsByClassName("item");
document.getElementsByTagName("li");
document.getElementById("l
htmlcollectionvsnodelist.hashnode.dev2 min read