Skip to content

Instantly share code, notes, and snippets.

@mannuelf
Created August 2, 2014 23:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mannuelf/412166dcc6bc12b8aac3 to your computer and use it in GitHub Desktop.
Save mannuelf/412166dcc6bc12b8aac3 to your computer and use it in GitHub Desktop.
AddressBook Print list
var bob = {
firstName: "Bob",
lastName: "Jones",
phoneNumber: "(650) 777-7777",
email: "bob.jones@example.com"
};
var mary = {
firstName: "Mary",
lastName: "Johnson",
phoneNumber: "(650) 888-8888",
email: "mary.johnson@example.com"
};
var contacts = [bob, mary];
function printPerson(person) {
console.log(person.firstName + " " + person.lastName);
}
function list() {
var contactsLength = contacts.length;
var i;
for(i = 0; i < contacts.length; i++) {
printPerson(contacts[i]);
}
};
list();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment