Memory Card Game in Javascript

4 months ago
65

Make a memory card matching game with javascript html and css! In this tutorial, you will learn how to create a javascript match card memory game using Pokemon Energy Cards! You will learn how to randomly place cards onto the board and create click handlers for selecting two cards and checking if they match.

Code: https://github.com/ImKennyYip/pokemon-match-cards
Demo: https://imkennyyip.github.io/pokemon-match-cards/

Website: https://www.kennyyipcoding.com/

Java Game Programming Projects Playlist:
https://www.youtube.com/playlist?list=PLnKe36F30Y4Y1XQOqNsL9Fgg_p6nYhcng

JavaScript Game Programming Projects Playlist:
https://www.youtube.com/playlist?list=PLnKe36F30Y4bLhA-st9sC4ZthyV7nsL2Q

Subscribe for more coding tutorials 😄!

var cardList = [
"darkness",
"double",
"fairy",
"fighting",
"fire",
"grass",
"lightning",
"metal",
"psychic",
"water"
]

Loading 1 comment...