Skip to content

Instantly share code, notes, and snippets.

@catacs
Created February 15, 2016 15:38
Show Gist options
  • Save catacs/7ab71698aa3b1e84ebf1 to your computer and use it in GitHub Desktop.
Save catacs/7ab71698aa3b1e84ebf1 to your computer and use it in GitHub Desktop.
Factory pattern javascript
// Constructor
var Class = function(value1, value2) { }
// Factory
Class.factory(value1) {
return new Class(value1, 'aaa');
};
// properties and methods
Class.prototype = { ... };
// http://blog.mixu.net/2011/02/02/essential-node-js-patterns-and-snippets/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment