Basic JavaScript - Understanding Case Sensitivity in Variable

Tell us what’s happening:

Hello! , I dont understand what i have done wrong, and please explain what im learning and in what it will help me be a better coder

Your code so far

// Variable declarations
var studlyCapVar = 10;
var properCamelCase = "A String";
var TitleCamleCase = 9000;

// Variable assignments
studlyCapVar = 10;
properCamelCase = "A String";
titleCamelCase = 9000;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0

Challenge Information:

Basic JavaScript - Understanding Case Sensitivity in Variables

Hi!

Why did you change the last variable name, with a typo on top?
The first two are correct.

Following the instructions by the letter will help you to pay attention to every little detail in your code. Just one missing letter or question mark can lead to a series of bugs in an application in a real production.

The thing is that many languages like C don’t point you mistakes like this, you have to search the needle in the haystack to find the bug.

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