Case Sensitivity in Variables Error

I did the camelCase format on both the variable declaration and variable assignment, the error always shows on studyluCapVar. What am I missing? pls help

Your code so far


// Variable declarations
var studylyCapVar;
var properCamelCase;
var titleCaseOver;

// Variable assignments
studylyCapVar = 10;
properCamelCase = "A String";
titleCaseOver = 9000;

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

You’ve just got an extra “y” in studylyCapVar.

2 Likes

StUdLyCapVaR

You have a small typo.

2 Likes

Thank you. I almost lost myself

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