Aug 31, 2018 · 1 min read
A little bug to fix in this post:
let isMatch = firstCard.dataset.name === secondCard.dataset.name;
It should be :
let isMatch = firstCard.dataset.framework === secondCard.dataset.framework;
A little bug to fix in this post:
let isMatch = firstCard.dataset.name === secondCard.dataset.name;
It should be :
let isMatch = firstCard.dataset.framework === secondCard.dataset.framework;