**Tell us what’s happening:**i don t know whats wrong with this cod
Your code so far
var myfirstname= "m" ;
var mylastname = "j";
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.162 Safari/537.36
.
Challenge: Declare String Variables
Link to the challenge:
sanity
2
Capitalization is important. Variable non-capitalized and capitalized with the same letters are two different variables.
yigit
3
JavaScript is a case-sensitive language.
The challenge is asking you to create two variables named myFirstName
and myLastName
. Try to change your variable names.