Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skdebela/blackjack
A simple JavaScript blackjack game.
https://github.com/skdebela/blackjack
blackjack blackjack-game javascript
Last synced: 7 days ago
JSON representation
A simple JavaScript blackjack game.
- Host: GitHub
- URL: https://github.com/skdebela/blackjack
- Owner: skdebela
- Created: 2024-07-12T16:57:54.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-26T15:45:49.000Z (4 months ago)
- Last Synced: 2024-10-21T01:29:02.971Z (23 days ago)
- Topics: blackjack, blackjack-game, javascript
- Language: JavaScript
- Homepage: https://samuelmideksa.github.io/blackjack/
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blackjack Game
This is a simple Blackjack game developed as part of the Scrimba [Learn JavaScript](https://v2.scrimba.com/learn-javascript-c0v) course. The game is deployed on GitHub Pages and can be played [here](https://samuelmideksa.github.io/blackjack/).
## Table of Contents
- [Introduction](#introduction)
- [How to Play](#how-to-play)
- [Project Structure](#project-structure)
- [Code Explanation](#code-explanation)
- [Future Improvements](#future-improvements)
- [Acknowledgments](#acknowledgments)## Introduction
Blackjack, also known as 21, is one of the most popular casino games in the world. The goal of this game is to beat the dealer's hand without going over 21. This project implements a simple version of the game using HTML, CSS, and JavaScript.
## How to Play
1. Click the "START GAME" button to begin.
2. Your initial two cards and their sum will be displayed.
3. Click the "NEW CARD" button to draw additional cards until you reach 21 or decide to stop.
4. The game will notify you if you've won, lost, or can draw another card.