Skip to content

Instantly share code, notes, and snippets.

@mkczarkowski
Created May 23, 2018 13:51
Show Gist options
  • Select an option

  • Save mkczarkowski/7d884026fd7957f0c61398970cef9f85 to your computer and use it in GitHub Desktop.

Select an option

Save mkczarkowski/7d884026fd7957f0c61398970cef9f85 to your computer and use it in GitHub Desktop.
// NOT OK, wywołanie zwróci undefined
const baz = () => { foo: 'bar' };
// OK
const baz = () => ({ foo: 'bar' });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment