Your code so far
Hello guys I have a Question about JavaScript when you complete the 6th challenge you are not able to click on run the tests I tried to restart and again start but still not working
please help me because I am a student and this is my homework
no, the button isn’t working at all I mean it doesn’t respond to the button if you have time please try it by yourself you will understand what I mean
Your code so far
Hello guys I have a Question about JavaScript when you complete the 6th challenge you are not able to click on run the tests I tried to restart and again start but still not working
The button doesn’t respond to my click that’s what I mean
please help me because I am a student and this is my homework
Challenge: Understanding Case Sensitivity in Variables
In the future, make sure to avoid posting screenshots and instead write your code directly into the forum.
When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.
Make sure that when the variable is declared, it’s name perfectly matches every time it is used. Use “camel case” for these kind of variables. Camel case has first word lowercase followed by every word after having their first letter capitalized. An example of camel case is “camelCase” or three-word camel case “oneTwoThree” etc.
To pass this challenge, you must correct the code to have consistent camel case when variables are declared and when those same variables are used. Also you can’t declare a variable with “myVar”.
OK, I think you’ve gotten too far off the beaten path. This lesson is about naming variables. All you should be doing is renaming variables, specifically changing their casing.
You should reset your code - hit the Reset All Code button and reset it so you can start fresh.
Then all you have to do is change all the variables to camelCase. That is where you capitalize the first letter of each word (except the first word) and add them all together. For example, “count of late records” becomes “countOfLateRecords”. You need to “fix” the variables in the problem. You will need to fix them in two places: where it is declared and where it is assigned. For example, if I had