Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.