Skip to content

Instantly share code, notes, and snippets.

@scottcorgan
Last active June 26, 2017 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottcorgan/9b6899193485b77acc99454b48c8648c to your computer and use it in GitHub Desktop.
Save scottcorgan/9b6899193485b77acc99454b48c8648c to your computer and use it in GitHub Desktop.
function someFunction () {}
const someFunction = () => {}
const someFunction = function (){}
const someObject = {
someFunction() {},
someFunction: function (){},
someFunction: () => {},
someFunction
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment