Skip to content

Instantly share code, notes, and snippets.

@egrueter-dev
Last active June 27, 2016 00:46
Show Gist options
  • Select an option

  • Save egrueter-dev/793f7b3042e20b2b3606058d7a20d70d to your computer and use it in GitHub Desktop.

Select an option

Save egrueter-dev/793f7b3042e20b2b3606058d7a20d70d to your computer and use it in GitHub Desktop.
function Person(firstname, lastname) {
this.firstname = firstname
this.lastname = lastname
}
var john = new Person(‘john’, ‘doe’);
var sally = new Person(‘sally’, ‘white’);
//=> Person { Firstname: “John”, Lastname: “Doe” }
//=> Person { Firstname: “Sally”, Lastname: “White” }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment