kubowania/memory-game

Incorrect tag in app.js source code for the memory game

JMcbeath1966 opened this issue · 0 comments

Source code on line 56 as follows: const grid = document.querySelector('.grid')

This should read: const grid = document.querySelector('#grid')

.grid should be #grid for the code to run correctly and match the tutorial