Skip to content

Instantly share code, notes, and snippets.

@lpil
Created December 5, 2016 23:12
Show Gist options
  • Save lpil/a6bf29cd64523e9e3b177a4ec45a6093 to your computer and use it in GitHub Desktop.
Save lpil/a6bf29cd64523e9e3b177a4ec45a6093 to your computer and use it in GitHub Desktop.
export function makeAnimal({ name, size }) {
const sayHello = () => `Hello, I'm ${name}`;
const isBigger = (other) => size > other.size;
return Object.freeze({
sayHello,
isBigger,
size,
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment