Understanding Case Sensitivity in Variables (Help Neale :)

Well I’ve done my utmost best. Please lend a brother in need a hand :slight_smile:
Thanks in advance.

Your code so far


// variable declarations
var StUdLyCapVaR;
var properCamelCase;
var TitleCaseOver;

// Assignments
STUDLYCAPVAR = 10;
properCamelCase = "A String";
tITLEcASEoVER = 9000;

var studlyCapVar;
var propercamelCase;
var titleCaseOver;

studlyCapVar = 10;
properCamelCase = "A String";
titleCaseOver = 9000;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36.

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

Hello @nealelons

  1. Change only existing code, no need to make duplicate variables.
  2. Write in camelCase only, for example var studlyCapVar; this is correct but var propercamelCase; this is not right, you have to write like this var properCamelCase;.