scrimba
Learn Basic JavaScript
Understanding Uninitialized Variables
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

Understanding Uninitialized Variables
AboutCommentsNotes
Understanding Uninitialized Variables
Expand for more info
index.js
run
preview
console
// Initialize these three variables
var a;
var b;
var c;

// Do not change code below this line

a = a + 1;
b = b + 5;
c = c + " String!";
Console
index.html
-0:39