Git Product home page Git Product logo

blackjack's Introduction

blackjack's People

Contributors

nisozakuto avatar

Watchers

 avatar

blackjack's Issues

Can't read the ace in the Hand Object

I am unable to find whether or not I have Ace in the hand

My function to find the Aces

//ACE CALC
function isThereAce(turn) {
  if (turn === player) {
    playersHandObj.forEach((e) => {
      // console.log("playersHand")
      // console.log(e)
      if (e.suit == "A") {
        console.log("sending true")
        return true;
      }
    })
    if (turn === dealer) {
      console.log("========")
      dealersHandObj.forEach((e) => {
        console.log("dealershand")
        console.log(e);
      })
    }
  }
}

Trying to get the result
console.log("Consoling ", isThereAce(player))

Tried

  • to get my result without the return statement.
  • reaching the different keys in the object

I am not getting an error message.

In the console, isThereAce(player) returns --> Undefined

Positioning the chips

I am not able to position the chips in a way I want to. The best I could do it to fix it to the left bottom.
I would like them to be bottom center and stay there regardless of the window's size.

chiparefixed

The chips are in a div called "ChipsArea" Which is under "HTML>Body>Main"

The css for it looks like this:

.chipsArea {
    position: absolute;
    bottom: 60px;
    left: 30px;
    margin: 0 auto;

}

The repo is up to date.

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.