Im new and very lost

hello guys,
im following the steps but im still lost im not sure what im doing wrong.

Your code so far


var myname=austin;

Your browser information:

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

Challenge: Declare JavaScript Variables

Link to the challenge:

Hi @austinmlounsbury !
Your var is supposed to be myName .See the capitalization.

1 Like

oh silly me. thank you

Hi @austinmlounsbury !

Welcome to the forum!

The instruction only want you to declare the myName variable.
Not assign a value to it.

But also, if you wanted to assign a value to the myName variable then it should be wrapped in quotes.
"austin"

Otherwise, you would get an error telling you that austin is not defined.

2 Likes

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