htmlcollectionof element to array code example
Example 1: create array from htmlcollection
let elements = document.getElementsByClassName("classnameHere");
let arrayOfElements = Array.from(elements);
Example 2: html collection of elements to array
const boxes = Array.from(document.getElementsByClassName('box'));
Example 3: html collection of elements to array
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<script>
const boxes = document.getElementsByClassName('box');
</script>