html collection of elements to array code example

Example 1: html collection of elements to array

const boxes = Array.from(document.getElementsByClassName('box'));

Example 2: html collection of elements to array

const boxArray = [...document.getElementsByClassName('box')];

Example 3: html collection of elements to array

var boxes = Array.prototype.slice.call(document.getElementsByClassName('box'));

var boxes = [].slice.call(document.getElementsByClassName('box'));

Example 4: 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>