Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 604 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 604 Bytes

Blackjack

Blackjack game

This is a simple command line game where a single player can have a hand of Blackjack against an automated dealer. The dealer will automatically stand on a hand of 17 or above.

How to run

install dependencies and start game

> npm i 
> npm start

run all test suites

> npm test

Next steps

  • Adjust to allow for multiple players
  • Incorporate more of the Blackjack rules, like allowing a player to choose to split a hand when dealt two cards with a value of 10.
  • Enable players to place bets before playing and keeping a record of their winnings.