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
'use strict';// Challenge 1: We want to log out the name "Reed", but it doesn't work. Can you fix it?const name;name = "Reed";console.log(name);// Challenge 2: We want 102 to be logged out. But we're getting an error instead. Try to fix it!const count = 100;count = 101;count = 102;console.log(count);// Challenge 3: We want to log out the price (50), but it doesn't work. Can you fix it?let price;console.log(price);price = 50;