Easy:
Ultimate Tic-tac-toe
Template: Click this link, and share with mrcodeswildride:
new project
Hint: For getting an element's ancestor, use
parentElement
or
closest.
Hint: For getting an element's descendents, use
children,
querySelector,
or
querySelectorAll.
Easy:
Connect Four
Template: Click this link, and share with mrcodeswildride:
new project
Hint: For getting neighboring squares in a grid, refer to the
grid help page.
Medium:
Minesweeper
Template: Click this link, and share with mrcodeswildride:
new project
Hint: When revealing the number of neighboring mines,
if the number is zero, reveal the number of neighboring mines for
all neighboring squares by having your function call itself.
Hint: For detecting a right click, refer to the
right click page.
Medium:
Mastermind
Template: Click this link, and share with mrcodeswildride:
new project
Medium:
Video Poker
Template: Click this link, and share with mrcodeswildride:
new project
Note: Use this
list
of poker hands.
Hint: For making a deck of cards, make an
object for each card.