AMSK
November 13, 2020, 10:32pm
1
Tell us what’s happening:
Basic JavaScript: Understanding Uninitialized Variables
It does not want to go to the next level
Your code so far
// Only change code below this line
var 6;
var 15;
var "I am a String!";
// Only change code above this line
a = a + 1;
b = b + 5;
c = c + " String!";
// Variable declarations
var StUdLyCapVaR;
var properCamelCase;
var TitleCaseOver;
// Variable assignments
STUDLYCAPVAR = 10;
PRoperCAmelCAse = "A String";
tITLEcASEoVER = 9000;
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36
.
Challenge: Understanding Case Sensitivity in Variables
Link to the challenge:
Learn to code. Build projects. Earn certifications.Since 2015, 40,000 graduates have gotten jobs at tech companies including Google, Apple, Amazon, and Microsoft.
I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>
) to add backticks around text.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).
None of these variables have names. They are also missing assignment operators (=
).
Are you sure that the values you are using here are correct?