Skip to content

Instantly share code, notes, and snippets.

@cgrinaldi
Last active August 29, 2015 14:17
Show Gist options
  • Save cgrinaldi/238f33685b64acd36ab5 to your computer and use it in GitHub Desktop.
Save cgrinaldi/238f33685b64acd36ab5 to your computer and use it in GitHub Desktop.
Simple function examples showing function expressions vs. function declarations
// simple example of a function declaration
function double (number) {
var result = 2 * number;
return result;
}
// simple example of a function expression
var double = function (number) {
var result = 2 * number;
return result;
}; // don't forget to add a semicolon!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment