This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by lederhosen96
over 9 years

I'm stuck on 26/28!!

this is my answer so far:

// On line 2, declare a variable myName and give it your name. console.log(myName= “Hannah”); // On line 4, use console.log to print out the myName variable. console.log(myName); // On line 7, change the value of myName to be just the first 2 // letters of your name. console.log(myName= myName.substring(0,2)); // On line 9, use console.log to print out the myName variable. console.log(myName);

! keep getting a message that says I didn’t log the first 2 letters of my name to the console. Help?

Answer 5410ed7d8c1ccc56a0000267

1 vote

Permalink

Okay, so the way I did it was as follows:

line 2) var myName = “Blah” line 4) console.log(myName) line 7) var myname = “Bl” line 9) console.log(myName)

points
Submitted by Sahelanthropus
over 9 years

3 comments

Jessica Cornell over 9 years

Thanks this was helpful!!!

Neil over 9 years

Line 7 is wrong. You don’t retype the string once you have declared the variable. The correct code should be myName = myName.substring(0,2);

Sahelanthropus over 9 years

Ah, thanks. Grateful for the correction.