Hit or Stand?
Learn perfect blackjack one decision at a time. The dealer shows a card, you make the call, and the book grades you on the spot — with the why, the full chart, and your stats.
Dealer shows
Your hand
{{ lastResult.correct ? feedbackPraise : 'The book says: ' + actionName(lastResult.best) }}
The complete basic strategy for the most common game: 4–8 decks, dealer stands on soft 17, double after split allowed. Find your hand on the left, the dealer’s up-card along the top — the cell is the mathematically best play. It doesn’t guarantee a win; it guarantees the smallest possible house edge.
Hard totals
| You have | {{ dLabel(d) }} |
|---|---|
| {{ t === 8 ? '8 or less' : (t === 17 ? '17+' : t) }} |
{{ chartCode('hard', t, d) }}
|
Soft totals (you have an ace)
| You have | {{ dLabel(d) }} |
|---|---|
| A + {{ t - 11 }} (soft {{ t }}) |
{{ chartCode('soft', t, d) }}
|
Pairs
| You have | {{ dLabel(d) }} |
|---|---|
| {{ pairLabel(v) }} |
{{ chartCode('pair', v, d) }}
|
Su = surrender if the table allows it; otherwise hit. D = double if you’re allowed; otherwise hit. Ds = double if allowed; otherwise stand. Fives are missing from the pairs table on purpose — a pair of fives is just a ten. Never split it, double it.
No hands yet — play a few rounds in Practice and your numbers will show up here. Everything stays on this device.
Hands that keep getting you
- {{ m.key }} — the book says {{ m.best }} missed ×{{ m.count }}
Know your enemy
How often the dealer busts, by up-card. This is the whole secret of basic strategy: when the dealer is likely to break, don’t risk breaking first.
| Dealer shows | {{ dLabel(d) }} |
|---|---|
| Bust chance | {{ BUST[d] }}% |
A learning table, not a casino — no bets, no chips, no accounts, and your stats never leave this device. If you play for real money, set a limit and keep it fun.
Dealt by Coffee & Fun.