scrimba
Introduction to JavaScript
While / Do While Challenge
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

While / Do While Challenge
AboutCommentsNotes
While / Do While Challenge
Expand for more info
index.js
run
preview
console
// Challenge: Analytics

/*
1. Track our user's activity.
2. While the total updates is under 10 updates keep logging the update count.
3. After we reach our threshold say, 'No longer tracking the user'.
4. Change the logic to a do while with it updating just a single time.
*/

let totalUpdates = 0;
Console
/index.html
-2:16