// Initialize these three variables
var a;
var b;
var c;
// Do not change code below this line
a = a + 5;
b = b + 10;
c = c + " I am a";
Your code so far
// Initialize these three variables
var a;
var b;
var c;
// Do not change code below this line
a = a + 5;
b = b + 10;
c = c + " I am a";
pjonp
November 7, 2019, 5:21am
#2
The instructions for this challenge say: " Initialize the three variables a
, b
, and c
with 5
, 10
, and "I am a"
respectively"
I believe this is the challenge you are working on? In the future it’s helpful if you post the challenge link if your message:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/understanding-uninitialized-variables
You have not asked us a question, so we don’t know how best to respond to your topic.
ilenia
November 7, 2019, 7:57am
#4
you need to respect these things. But if you have any question, please ask! we can’t help if you don’t tell us the issue!
// Initialize these three variables
var a;
var b;
var c;
a = 5;
b = 10;
c = "I am a"
// Do not change code below this line
a = a + 1;
b = b + 5;
c = c + " String!";
You could rely on the Hint part of the challange
ilenia
November 7, 2019, 12:47pm
#7
you should really do what the comment say.