Skip to content

Instantly share code, notes, and snippets.

@ioxua
Last active December 23, 2018 21:04
Show Gist options
  • Save ioxua/49581f47f31d5b35421856e5f01927f0 to your computer and use it in GitHub Desktop.
Save ioxua/49581f47f31d5b35421856e5f01927f0 to your computer and use it in GitHub Desktop.
Dwemthy's Array ES6 -- medium post 2
const creatureFactory = (
name, life, strength, charisma, weapon, customProps
) => function create() {
return {
name, life, strength,
charisma, weapon
// ...
}
};
const Rabbit = creatureFactory("Rabbit", 10, 2, 44, 4 /* more here */);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment