Skip to content

Instantly share code, notes, and snippets.

@wentout
Last active October 9, 2019 21:55
Show Gist options
  • Save wentout/47b5c53fb8a02b6b57f37c82dac8491c to your computer and use it in GitHub Desktop.
Save wentout/47b5c53fb8a02b6b57f37c82dac8491c to your computer and use it in GitHub Desktop.
Flower
var Pollen = { season : 'Spring' };
// factory of constructors
var FlowersFactory = function (proto) {
var FlowerEggCell = function (sort) {
this.sort = sort;
};
FlowerEggCell.prototype = proto;
return FlowerEggCell;
};
var FlowerZygote = FlowersFactory(Pollen);
var galanthus = new FlowerZygote('Galanthus');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment