Untitled

Anonymous
javascript
10/18/2022 6:54 PM
476 B
21
Indexable
"use strict";

window.addEventListener("load", Init);
console.log("tests");
let boxCount;

function Init(){
    boxCount = document.getElementById("boxes");
    
    const generate = document.getElementById("start-button");
    generate.addEventListener("click", GenerateBoxes);
}

function GenerateBoxes(){
    console.log("Test button");
}
Editor is loading...