Created
January 14, 2016 21:23
-
-
Save brettvaida/f8df2625b345e50c494a to your computer and use it in GitHub Desktop.
Address book
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var bob = { | |
firstName: "Bob", | |
lastName: "Jones", | |
phoneNumber: "(650) 777-7777", | |
email: "[email protected]" | |
}; | |
var mary = { | |
firstName: "Mary", | |
lastName: "Johnson", | |
phoneNumber: "(650) 888-8888", | |
email: "[email protected]" | |
}; | |
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]); | |
} | |
} | |
function add(firstName, lastName, email, phoneNumber) { | |
contacts[contacts.length] = { | |
firstName: firstName, | |
lastName: lastName, | |
email: email, | |
phoneNumber: phoneNumber | |
}; | |
}; | |
add("Molly", "Hobson", "[email protected]", "(402)-658-1332"); | |
list(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment