How to convert an HTMLCollection object to an Array in JavaScript?
Originally Published Here ๐!
To convert an HTMLCollection object to an array, we can use the from() method from the global Array object in JavaScript.
TL;DR
// Get all the references to the elements with classname 'header'.
// The method return an H...
melvingeorge-me.hashnode.dev2 min read