Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 9, 2016 03:28
Show Gist options
  • Save codecademydev/3830135cea5aa1cf9ecedee6720bf62c to your computer and use it in GitHub Desktop.
Save codecademydev/3830135cea5aa1cf9ecedee6720bf62c 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];
// printPerson added here
function printPerson(person) {
console.log(person.firstName + " " + person.lastName);
}
printPerson(contacts[0]);
printPerson(contacts[1]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment