We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c74ee50 commit 23018e6Copy full SHA for 23018e6
memory-matching-game/memory-matching-game.js
@@ -28,8 +28,8 @@ function shuffleArray(array) {
28
}
29
30
function createCards() {
31
- const numPairs = window.innerWidth > 768 ? 24 : 8;
32
- const selectFew = shuffleArray([...colors]).slice(0, numPairs);
+ const numPairs = window.innerWidth > 768 ? 36 : 16;
+ const selectFew = shuffleArray([...colors]).slice(0, (numPairs/2));
33
const cardValues = shuffleArray([...selectFew, ...selectFew]);
34
grid.innerHTML = '';
35
cardValues.forEach(value => {
0 commit comments