@ -0,0 +1,33 @@
function drawBoard(){
let tbl = document.getElementById("board");
for (let y = 0; y < 10; y++){
let myRow = document.createElement("tr");
myRow.id = "row" + y;
tbl.appendChild(myRow);
let row = document.getElementById("row" + y);
for(let x = 0; x < 10; x++){
let cell = document.createElement("td");
row.appendChild(cell);
}