im confused
// Variable declarations
var StUdLyCapVaR;
var properCamelCase;
var TitleCaseOver;
// Variable assignments
StUdLyCapVaR = 10;
properCamelCase = "A String";
TitleCaseOver = 9000;
Challenge: Understanding Case Sensitivity in Variables
Link to the challenge:
HI @marcusn !
Your task is to take each of the variable names and rewrite them using camel case.
This is camel case
var someVariable;
var anotherVariableName;
var thisVariableNameIsSoLong;
The first letter of the first word is lowercase and the rest of the words start with an uppercase.
make sense?
edit:
For this first one
studly will be lowercase
C will be capitalized
ap will be lowercase
V will be capitalized
ar will be lowercase.
Just replicate that process for other words.
meetb
5
hello @jwilkins.oboe
excuse me if I am wrong but I think
the whole studly will be in lowercase
system
Closed
7
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.