Basic JavaScript - Understanding Uninitialized Variables

Tell us what’s happening:
Describe your issue in detail here.
the program wont let this pass even though it meets all the requirements.
also, the very last line that i wrote doesnt matter bc i didnt mess with the code
Your code so far

// Only change code below this line
var a = "5";
var b = "10";
var c = "i am a";
// Only change code above this line

a = a + 1;
b = b + 5;
c = c + " String!";
//hot shit

type or paste code here

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14816.82.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Understanding Uninitialized Variables

Link to the challenge:

The instructions say

Initialize the three variables a, b, and c with 5, 10, and "I am a" respectively so that they will not be undefined.

Your string does not exactly match the requirement.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.