Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 9, 2016 03:29
Show Gist options
  • Save codecademydev/3b5e64585a06120780172b512874e3b0 to your computer and use it in GitHub Desktop.
Save codecademydev/3b5e64585a06120780172b512874e3b0 to your computer and use it in GitHub Desktop.
Codecademy export
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;
for (var 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