Skip to content

Instantly share code, notes, and snippets.

@RickEyre
Created February 25, 2015 16:22
Show Gist options
  • Save RickEyre/e9165bc4c16ac8c1c1f3 to your computer and use it in GitHub Desktop.
Save RickEyre/e9165bc4c16ac8c1c1f3 to your computer and use it in GitHub Desktop.
Example of prototype JS
function Foo() {}
Foo.prototype.myState = {};
Foo.prototype.myBehaviour = function() {
console.log('Doing something');
}
foo = new Foo();
console.log(foo.state);
foo.myBehaviour();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment