Skip to content

Instantly share code, notes, and snippets.

@vuongtran
Created June 18, 2015 02:33
Show Gist options
  • Save vuongtran/5ad354ca49bbc8145a6d to your computer and use it in GitHub Desktop.
Save vuongtran/5ad354ca49bbc8145a6d to your computer and use it in GitHub Desktop.
// Constructor
function Foo(bar) {
// always initialize all instance properties
this.bar = bar;
this.baz = 'baz'; // default value
}
// class methods
Foo.prototype.fooBar = function() {
};
// export the class
module.exports = Foo;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment