Skip to content

Instantly share code, notes, and snippets.

View DinnerFingers's full-sized avatar

DinnerFingers DinnerFingers

  • West Lancs
View GitHub Profile
/*
Cards Sequence 2, 3, 4, 5, 6 should return "5 Bet" <--this is the only one with no check (-.-)
Cards Sequence 7, 8, 9 should return "0 Hold"
Cards Sequence 10, J, Q, K, A should return "-5 Hold"
Cards Sequence 3, 2, A, 10, K should return "-1 Hold"
*/
var count = 0;
function cc(card) {
// Only change code below this line