Skip to content

Instantly share code, notes, and snippets.

@snippe
Created December 31, 2014 05:22
Show Gist options
  • Save snippe/fa214cb56839f365cf07 to your computer and use it in GitHub Desktop.
Save snippe/fa214cb56839f365cf07 to your computer and use it in GitHub Desktop.
Factory Function in JavaScript
function FactoryFunction() {
var obj = {
prop3: 3,
prop4: 4
};
return obj;
}
FactoryFunction.prototype.myMethod = function () { };
//returns Object. myMethod won't be available here
var obj3 = new FactoryFunction();
//returns Object. myMethod won't be available here
var obj4 = FactoryFunction();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment