Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created November 20, 2016 16:57
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 codecademydev/90a9f8096aea8d590db5383a4388c42b to your computer and use it in GitHub Desktop.
Save codecademydev/90a9f8096aea8d590db5383a4388c42b 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];
var contactsLength = contacts.length;
function printPerson(person) {
console.log(person.firstName + " " + person.lastName);
}
function list() {
for (var i = 0; i < contactsLength; i++) {
printPerson(contacts[i]);
}
}
/*Create a search function
then call it passing "Jones"*/
function add(firstName, lastName, email, phoneNumber) {
contacts[contacts.length] = {
firstName: firstName,
lastName: lastName,
email: email,
phoneNumber: phoneNumber
};
};
add("Alexander", "Waumans", "alexander.waumans@example.com", "123456789");
list();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment