scrimba
Learn Basic JavaScript
Understanding Case Sensitivity in Variables
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Understanding Case Sensitivity in Variables
AboutCommentsNotes
Understanding Case Sensitivity in Variables
Expand for more info
index.js
run
preview
console
// Declarations
var StUdLyCapVaR;
var properCamelCase;
var TitleCaseOver;

// Assignments
STUDLYCAPVAR = 10;
PRoperCAmelCAse = "A String";
tITLEcASEoVER = 9000;
Console
index.html
-1:23