Answers for "array to html collection"

0

html collection of elements to array

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

var boxes = [].slice.call(document.getElementsByClassName('box'));
Posted by: Guest on September-29-2020
-2

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>
Posted by: Guest on October-01-2020

Code answers related to "array to html collection"

Code answers related to "Javascript"

Browse Popular Code Answers by Language