// Declare a variable on line 2 called myCountry and give it a string value.
var myCountry="America";
// Use console.log to print out the length of the variable myCountry
console.log(myCountry.length);
// Use console.log to print out the first three letters of myCountry
console.log(myCountry.substring(0,3));
Thank you
ReplyDelete