scrimba
Frontend Career Path
Making websites interactive
Blackjack
Make the start button work
Go Pro!Bootcamp

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

AboutCommentsNotes
Make the start button work
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Blackjack</h1>
<p id="message-el">Want to play a round?</p>
<p>Cards:</p>
<p>Sum:</p>
<!-- 1. Create a button that says START GAME.
Make it call a startGame() function when clicked -->
<script src="index.js"></script>
</body>
</html>
Console
"Do you want to draw a new card? 🙂"
,
/index.html
-5:49