Skip to content

Instantly share code, notes, and snippets.

@h3nr1ke
Created December 28, 2018 10:48
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 h3nr1ke/b9598c4264bb61e7079c0546a7f604d4 to your computer and use it in GitHub Desktop.
Save h3nr1ke/b9598c4264bb61e7079c0546a7f604d4 to your computer and use it in GitHub Desktop.
Function example
/**
*
*/
// Function in old style
function _myCoolFunction(param1, param2){
return param1 + param2;
}
// we can also declare it as a variable
var _myOtherCoolFunction = function(param1, param2){
return (2 * param1) + param2;
};
// END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment