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

Saturday, November 17, 2012

Codecademy: "More with While Review"


//sample solution


var i=0;
for(i=0; i<3; i++){
console.log(i);
}

while(i>0){
console.log(i);
i--;
}

do{
console.log(i);
i++;
}while(i<3);

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts