scrimba
Build a Snake game in JavaScript
Adding squares into our grid using JavaScript
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Adding squares into our grid using JavaScript
AboutCommentsNotes
Adding squares into our grid using JavaScript
Expand for more info
index.js
run
preview
console
const grid = document.querySelector('.grid')
const startButton = document.getElementById('start')
const score = document.getElementById('score')

function createGrid() {
//create elements

//create 100 of these elements

//add styling to these elements

//create array of squares
}
Console
/index.html
-7:27