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

0 points
Submitted by petsokan10
over 8 years

Do you have the right answers to this, please?

// On line 2, declare a variable myName and give it your name. var myName = “Peter”; // 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. myName.substring(“Pe”); // On line 9, use console.log to print out the myName variable.

console.log(myName);

Answer 55de30e2e39efeb833000250

1 vote

Permalink

// On line 7, change the value of the myName variable to be just the first 2 // letters of your name. myName = myName.substring(0,2);

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substring

Reference

google search == the Book == javascript [your question] site:developer.mozilla.org

== discussions / opinions == javascript [your question] site:stackoverflow.com

== guidance == www.crockford.com http://javascript.crockford.com/code.html http://javascript.crockford.com/survey.html https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript www.developer.mozilla.org/en-US/docs/Web/JavaScript/Guide

points
Submitted by Leon
over 8 years