Skip to content

Instantly share code, notes, and snippets.

@raikusy
Last active July 20, 2018 19:36
Show Gist options
  • Save raikusy/98b5076744d38984d9bb358e1f09e73f to your computer and use it in GitHub Desktop.
Save raikusy/98b5076744d38984d9bb358e1f09e73f to your computer and use it in GitHub Desktop.
Calling GF using actual closure!
function callGf() {
var name = 'Jorina';
return function() {
console.log('Calling ' + name + ' jaan...');
}
}
var calling = callGf();
calling();
// same as doing: callGf()();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment