Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Last active July 9, 2016 03:28
Show Gist options
  • Save codecademydev/922865d3869b9487ddb78de84c046321 to your computer and use it in GitHub Desktop.
Save codecademydev/922865d3869b9487ddb78de84c046321 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];
console.log(contacts[1].phoneNumber);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment