Basic JavaScript - Declare JavaScript Variables

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

i just started coding today and i couldnt get past this

Your code so far

var ourName = "nihat";

Your browser information:

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

Challenge: Basic JavaScript - Declare JavaScript Variables

Link to the challenge:

Look at your variable name and compare it to the line I copied from the instructions for that exercise. With that small change, you should be able to get it passing.

Use the var keyword to create a variable called myName.

Also, look at the example in the exercise, you just need to declare the variable, but DO NOT assign a value to it.

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