scrimba
Introduction to JavaScript
Challenge: Const
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
Challenge: Const
Expand for more info
index.js
run
preview
console
// 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 + '.');
Console
"My dog Gator is turning 2."
,
/index.html
-0:53