Quotes help make search much faster. Example: "Practice Makes Perfect"

Wednesday, December 5, 2012

Codecademy: Codeyear Looping Through Strings


//sample solution

var word = "code";
var wordLength = word.length;
// Loop goes here
var i;
for(i=0;i<wordLength;i++){
console.log(word[i]);
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts