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

Saturday, November 17, 2012

Codecademy: "Buzz"


//sample solution

for(var i=1; i<=20; i++){
if(i%3 === 0){
console.log("Fizz");
} else if(i%5 === 0){
console.log("Buzz");
} else {
console.log(i);
}
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts