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
// Challenge: It your Dog's Birthday!/* Create 2 variables related to your dog. Make one of them its age and update it by one. Log out all the values in a friendly way of your choosing. Update: How might we change our variable challenge to use const?*/let name = "Gator";let age = 1;age = age + 1;console.log('My dog ' + name + ' is turning ' + age + '.');