Created
April 26, 2018 20:25
-
-
Save arrbxr/0b6497ff08a46b2fa365b8ace004499d to your computer and use it in GitHub Desktop.
Counting Cards created by arrbxr - https://repl.it/@arrbxr/Counting-Cards
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var count = 0; | |
| function cc(card) { | |
| switch(card){ | |
| case 1: | |
| case 2: | |
| case 3: | |
| case 4: | |
| case 5: | |
| case 6: | |
| count++; | |
| break; | |
| case 7: | |
| case 8: | |
| case 9: | |
| count = 0; | |
| break; | |
| case 10: | |
| case 'J': | |
| case 'Q': | |
| case 'K': | |
| case 'A': | |
| count--; | |
| } | |
| if(count > 0){ | |
| return count + " Bet"; | |
| } | |
| else | |
| return count + " Hold"; | |
| } | |
| cc(2); cc(3); cc(7); cc('K'); cc('A'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment