Basic Javascript issue

Tell us what’s happening:
i am getting an error :
ReferenceError: someAjective is not defined

what is wrong with the var someAjective in my code?

Your code so far


// Change code below this line
var someAdjective = "awesome!";
var myStr = "Learning to code is ";
myStr += someAjective;

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36.

Challenge: Appending Variables to Strings

Link to the challenge:

Adjective is spelled incorrectly on this line. :slight_smile:

Thank you for your reply.
And pointing out the silly mistake i did :slight_smile:

1 Like