Hi this is the second test on basic javascript I am sure that i put the code the same as in the help video it doesn’t seem to work. I also tried looking at the hint which is var ourname; that didn’t work either. Just wondering what i entered wrong thanks
Your code so far
var ourname = "yourname";
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47
the name of that var should be written in camelCase.
It starts with minorCaseletter and every further word is written in majorCase like:
thisIsAnExampleOfCamelCase.
your code: ```
hi there,
to create a variable, you do not need to set an equal.
just write the var before the variable name.
If you you follow the instructions you will take the names exactly as they are offered by the instruction…
Developers set them in camelCase for better readability.