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

Wednesday, December 5, 2012

Codecademy: Codeyear Printing Out Tables (Part 1)


//sample solution

var table = [
    ["Person",  "Age",  "City"],
    ["Sue",     22,     "San Francisco"],
    ["Joe",     45,     "Halifax"]
];
var tableLength = table.length;
var i;
for(i=0;i<tableLength;i++){
console.log(i);
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts