Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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