Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 21, 2017 03:19
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/15480541265200e5f995a20630f2e21d to your computer and use it in GitHub Desktop.
Save codecademydev/15480541265200e5f995a20630f2e21d 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 add(firstName, lastName, phoneNumber, email) {
contacts[contacts.length] = {
firstName: firstName,
lastName: lastName,
phoneNumber: phoneNumber,
email: email
};
}
function list() {
var contactsLength = contacts.length;
for (var i = 0; i < contactsLength; i++) {
printPerson(contacts[i]);
}
}
/*Create a search function
then call it passing "Jones"*/
function search(lastName) {
var contactsLength = contacts.length;
for (var i = 0; i < contactsLength; i++) {
if (lastName === contacts[i].lastName) {
printPerson(contacts[i]);
}
}
}
search("Jones");
add("Mikoto", "Kuroyuki", "(444) 4444-4444", "mikoto.kuroyuki@example.com");
list();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment