let firstCard = 10 let secondCard = 7 let sum = firstCard + secondCard
// Write the conditional according to these rules:
// if less than or equal to 20 -> "Do you want to draw a new card? 🙂" // else if exactly 21 -> "Wohoo! You've got Blackjack! 🥳" // else -> "You're out of the game! 😭"
1
2
3
4
5
6
7
8
9
10
11
let firstCard =10
let secondCard =7
let sum = firstCard + secondCard
// Write the conditional according to these rules:
// if less than or equal to 20 -> "Do you want to draw a new card? 🙂"