Giter VIP home page Giter VIP logo

blackjack's Introduction

// add object of all cards

// var deck = [A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A12,A13,A14,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C12,C13,C14,H1,H2,H3,H4,H5,H6,H7,H8,H9,H10,H12,H13,H14,D1,D2,D3,D4,D5,D6,D7,D8,D9,D10,D12,D13,D14]


var deck = [
  	{
    id: "A5",
    suit: "Ace", 
    card: "5", 
    value: 5
  },
{
    id: "A6",
    suit: "Ace", 
    card: "6", 
    value: 6
  },
{
    id: "A7",
    suit: "Ace", 
    card: "7", 
    value: 7
  },
{
    id: "A8",
    suit: "Ace", 
    card: "8", 
    value: 8
  },
{
    id: "A9",
    suit: "Ace", 
    card: "9", 
    value: 9
  },
{
    id: "A10",
    suit: "Ace", 
    card: "10", 
    value: 10
  }
]

var playersHand = []
var dealersHand = []


//select card
function dealCard(){
	var random = Math.floor((Math.random() * 52) + 1)

	var card = deck[2].id;
deck[2].push(playerHand)
console.log(playerHand)
	
}
// remove card from deck object
// add card to playerHand object

// generate dealers hand

// generate players hand

	// calculate total score

// on click 'hit'

	// generate new card

	// append new card to players hand

	// calculate total score

	// if player score < 21 allow to continue

		// else player bust

		// reveal dealers hand

		// declare dealer the winner

// on click 'stick'
	
	// generate dealers hand based on rules

		// if dealers score < 17, add new card

		// else reveal dealers hand

	// reveal dealers hand

// calculate winner
	
// display winner

// new deal

blackjack's People

Contributors

mikieet avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.