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
// Count to ten!// We need to specify...// Where should we START counting?// Where is the FINISH line?// What's the STEP SIZE we should use?// START FINISH STEP SIZEfor ( let count = 1; count < 11; count += 1 ) { console.log(count)}