Skip to content

Instantly share code, notes, and snippets.

@dengjonathan
Last active September 28, 2016 02:28
Show Gist options
  • Save dengjonathan/1cf42e19efc7ff3e52693cc5b8773a75 to your computer and use it in GitHub Desktop.
Save dengjonathan/1cf42e19efc7ff3e52693cc5b8773a75 to your computer and use it in GitHub Desktop.
OOP style
const hasLegsMaker = num => ({ legs: num });
const noiseMaker = noise => {
return { makeNoise: () => { console.log(`All day I just ${noise}`) } };
};
var fido = Object.assign({}, hasLegsMaker(4), noiseMaker('woof!'));
fido.makeNoise(); //All day I just woof!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment