Skip to content
Advertisement

JavaScript card game: set the player who deals the cards in each hand

I am working on a card game and I need to set the player who deals each hand.

I have two arrays, one stores the hands and the other stores the players.

JavaScript

My goal is to assign a dealer to each hand in a consecutive way until reaching the max number of hands. For example:

JavaScript

I tried different loops, but I am really stuck with this:

JavaScript

Any suggestions? Any help will be much appreciated.

Advertisement

Answer

You can use % in order to return back to never go out of range of the player’s array and always return to the start again:

For example: 0 % 3 == 0

1 % 3 == 1

2 % 3 == 2

3 % 3 == 0

4 % 3 == 1

JavaScript

If you are interested you can read more about js operators here: https://www.w3schools.com/js/js_operators.asp

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement