Skip to content

Instantly share code, notes, and snippets.

@knd
Created January 13, 2013 15:48
Show Gist options
  • Save knd/4524726 to your computer and use it in GitHub Desktop.
Save knd/4524726 to your computer and use it in GitHub Desktop.
constructor invocation.
function HellKitchen() {
console.log(this);
this.cook = function() {
console.log(this);
};
}
k = new HellKitchen();
k.cook();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment