Skip to content

Instantly share code, notes, and snippets.

@pzaich
Created July 17, 2012 21:24
Show Gist options
  • Select an option

  • Save pzaich/3132201 to your computer and use it in GitHub Desktop.

Select an option

Save pzaich/3132201 to your computer and use it in GitHub Desktop.
var objectConstructor = function(value){
this.value = value;
this.arr = [];
this.someFunctionBoundtoObject = function () {
//function bound to object here
}
//No return needed
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment