var StUdLyCapVaR; var properCamelCase; var TitleCaseOver;

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

   **Your code so far**

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

// Variable assignments
studlyCapVar = 10;
properCamelCase = "A String";
titleCaseOver = 9000;
var studlyCapVar;
var properCamelCase;
var titleCaseOver;
   **Your browser information:**

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

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

Hi @Pablochase82 !

Welcome to the forum!

The goal of this lesson is to teach you how to write camelcase for variables.

This is an example of camel case.

The first letter of the word proper is lowercase and the following words start with a capital first letter.

Your task is to convert the variables into proper camel case.

You have to change these variables

into proper camel case.

Hope that makes sense!

To clarify

You are supposed to change these variables to camelcase

You need to change these

this is correct.

You don’t need to rewrite them again at the bottom here

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