Not sure where to start?
Bootcamp
Study group
Collaborate with peers in your dedicated #study-group channel.
Code reviews
Submit projects for review using the /review command in your #code-reviews channel
/review
Karma
scrimba
let firstCard = 10let secondCard = 4let sum = firstCard + secondCardlet hasBlackJack = falselet isAlive = truelet message = ""if (sum <= 20) { message = "Do you want to draw a new card? π"} else if (sum === 21) { message = "Wohoo! You've got Blackjack! π₯³" hasBlackJack = true} else { message = "You're out of the game! π" isAlive = false}console.log(message)