Skip to content

Instantly share code, notes, and snippets.

@gsans
Created November 28, 2014 10:30
Show Gist options
  • Save gsans/cc8e49daf53f883470e6 to your computer and use it in GitHub Desktop.
Save gsans/cc8e49daf53f883470e6 to your computer and use it in GitHub Desktop.
//constructor function
function Person(id) {
//new keyword implicit this = {};
this.id = id;
//new keyword implicit return this;
};
//this points to new object
var person = new Person(1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment