Skip to content

Instantly share code, notes, and snippets.

View cameronj86's full-sized avatar

Cameron Jackson cameronj86

View GitHub Profile
// Create a function called MakePerson which takes in name, birthday, ssn as its parameters and returns a new object with all of the information that you passed in.
function MakePerson(name, bday, ssn) {
var person = {};
person.name = name;
person.bday = bday;
person.ssn = ssn;
return person;
};