Skip to content

Instantly share code, notes, and snippets.

@egrueter-dev
Last active June 27, 2016 00:47
Show Gist options
  • Save egrueter-dev/122599ed17cbd93d2abf9ce80d116c8d to your computer and use it in GitHub Desktop.
Save egrueter-dev/122599ed17cbd93d2abf9ce80d116c8d to your computer and use it in GitHub Desktop.
Function Constructors
var john = new Person();
function Person() {
this.firstname = ‘John’
this.lastname = ‘Doe’
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment