Skip to content

Instantly share code, notes, and snippets.

@zonayedpca
Created March 24, 2018 03:44
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 zonayedpca/5c2b7305c60788df370ab30e28c18ec1 to your computer and use it in GitHub Desktop.
Save zonayedpca/5c2b7305c60788df370ab30e28c18ec1 to your computer and use it in GitHub Desktop.
First Class Functions
var aFunc = function(name) {
console.log('I am Simply a function and my name is ' + name);
}
var anothervar = aFunc;
anothervar('Zonayed Ahmed');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment