Skip to content

Instantly share code, notes, and snippets.

@aaronfay
Created November 27, 2011 03:55
Show Gist options
  • Save aaronfay/1396931 to your computer and use it in GitHub Desktop.
Save aaronfay/1396931 to your computer and use it in GitHub Desktop.
Object construction in Javascript
function Widget() {
// you may find people calling this the 'constructor' function
this.name = 'widget';
}
var widget = new Widget;
// typeof(widget) -> 'object'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment