BLACKJACK
DESCRIPTION
This is a card game created as an assignment for the computer science learning platform Recursion. On the start screen, you can choose between Blackjack and Poker, but currently only Blackjack is available to play.
When you click the 'HIT' button at the bottom of the screen, you draw one card. When you click the 'STAND' button, you can compete with the dealer using the cards you have. If the total value of your cards is less than or equal to 21 and greater than the dealer's, the player wins.
Only on the first turn, you can click the 'SURRENDER' button to give up. If you surrender, half of your bet is returned. Also, only on the first turn, you can click the 'DOUBLE' button to play a double play. By paying double the bet, if you win, the payout is doubled. However, you can draw only one more card.
You can play until you run out of chips or run out of cards. Good luck!
TECHNOLOGY
I developed this game with TypeScript, Next.js, Redux, Tailwind CSS, and so on.