Quotes help make search much faster. Example: "Practice Makes Perfect"
Thursday, December 6, 2012
Codecademy: Codeyear Playing More with Strings
//sample solution
// create your strings and print their lengths!
var str1 = "a";
var str2 = "aa";
var str3 = "aaa";
console.log(str1.length);
console.log(str2.length);
console.log(str3.length);
No comments:
Post a Comment