Skip to content

Commit 23018e6

Browse files
committed
Matching memory game
1 parent c74ee50 commit 23018e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

memory-matching-game/memory-matching-game.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ function shuffleArray(array) {
2828
}
2929

3030
function createCards() {
31-
const numPairs = window.innerWidth > 768 ? 24 : 8;
32-
const selectFew = shuffleArray([...colors]).slice(0, numPairs);
31+
const numPairs = window.innerWidth > 768 ? 36 : 16;
32+
const selectFew = shuffleArray([...colors]).slice(0, (numPairs/2));
3333
const cardValues = shuffleArray([...selectFew, ...selectFew]);
3434
grid.innerHTML = '';
3535
cardValues.forEach(value => {

0 commit comments

Comments
 (0)