I want to get all the HTML elements with the class "Box" and then that collection convert it to an Array so i can acces each element throught position.
This is the code i made:
function BoxAppearence() {
var BoxCollection = document.getElementsByClassName("Box");
console.log(BoxCollection)
var Box = BoxCollection.split("");
console.log(Box)
console.log(Box[12])
}
BoxAppearence();