Skip to content

Instantly share code, notes, and snippets.

@h4
Last active January 21, 2016 19:24
Show Gist options
  • Save h4/222680ae521be9dc8acf to your computer and use it in GitHub Desktop.
Save h4/222680ae521be9dc8acf to your computer and use it in GitHub Desktop.
var contacts = [];
var addContact = function(firstName, lastName, email, phoneNumber) {
var newPerson = {
firstName: firstName.toUpperCase(),
lastName: lastName.toUpperCase(),
email: email,
phoneNumber: phoneNumber
}
contacts.push(newPerson);
}
console.log(newPerson, contacts);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment