Basic JavaScript - Understanding Case Sensitivity in Variables - BNrsXeF-DHJu60uB1AyM8

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

// Variable declarations
var StUdLyCapVaR = 10
var properCamelCase;
var TitleCaseOver;

// Variable assignments
StUdLyCapVaR = 10;
properCamelCase = "A String";
TitleCaseOver = 9000;

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:101.0) Gecko/20100101 Firefox/101.0

Challenge: Basic JavaScript - Understanding Case Sensitivity in Variables

Link to the challenge:

In camelCase, only the first letter of each word in the variable name is capitalized (except for the first word, which is all lowercase).

thisIsCamelCase
1 Like

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