Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created January 19, 2017 06:39
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/3d2d9b71d4f73a74789a0635fe4a66fe to your computer and use it in GitHub Desktop.
Save codecademydev/3d2d9b71d4f73a74789a0635fe4a66fe 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 < contactsLength - 1; i++) {
printPerson(contacts[i]);
}
}
function search(lastName) {
var contactsLength = contacts.length;
for (var i = 0; i < contactsLength - 1; i++) {
printPerson(contacts[i]);
if (contacts[i].lastName === lastName) {
console.log(printPerson(contacts[i]));
} console.log("Nope");
}
}
function add(firstName, lastName, phoneNumber, email) {
contacts[contacts.length] = {
firstName: firstName,
lastName: lastName,
phoneNumber: phoneNumber,
email: email
};
}
add("Richard", "Figueroa-Mejias", "626 862-8880", "richafig@gmail.com");
list(contacts);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment