Skip to content

Instantly share code, notes, and snippets.

@myndzi
Created June 22, 2017 01:39
Show Gist options
  • Save myndzi/9e6232d86995341acb3c14ed32e1cec9 to your computer and use it in GitHub Desktop.
Save myndzi/9e6232d86995341acb3c14ed32e1cec9 to your computer and use it in GitHub Desktop.
function Foo(bar) {
this.state = bar;
}
Foo.prototype.doStuff = function(baz) {
this.state = baz;
};
Foo.prototype.getStuff = function () {
return this.state;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment