Skip to content

Instantly share code, notes, and snippets.

@cwylie0
Last active August 25, 2016 01:29
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 cwylie0/4084658cb37a38a11390b99c09b283bd to your computer and use it in GitHub Desktop.
Save cwylie0/4084658cb37a38a11390b99c09b283bd to your computer and use it in GitHub Desktop.
Simple javascript address book example from codeacademy
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; 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 (contacts[i].lastName === lastName){
printPerson(contacts[i]);
}
}
}
function add(firstName, lastName, email, phoneNumber){
contacts[contacts.length] = {
firstName: firstName,
lastName: lastName,
email: email,
phoneNumber: phoneNumber,
};
}
add("cwylie", "zero", "cwylie0@address.js", "(555) 444-8098");
list();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment