Skip to content

Instantly share code, notes, and snippets.

@DaniGithub
Created April 17, 2016 08:52
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 DaniGithub/6aa23dd020d73a81e9284f1e7fad49a6 to your computer and use it in GitHub Desktop.
Save DaniGithub/6aa23dd020d73a81e9284f1e7fad49a6 to your computer and use it in GitHub Desktop.
JavaScript Functions
function foo() {
return 42;
}
foo.bar = "hello world";
typeof foo; // "function"
typeof foo(); // "number"
typeof foo.bar; // "string"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment