Skip to content

Instantly share code, notes, and snippets.

@oscaroceguera
Created November 21, 2017 23:15
Show Gist options
  • Save oscaroceguera/6c8e781442a3b420d1e10c27b82e370c to your computer and use it in GitHub Desktop.
Save oscaroceguera/6c8e781442a3b420d1e10c27b82e370c to your computer and use it in GitHub Desktop.
function greet() {
name = 'Hammad';
return function () {
console.log('Hi ' + name);
}
}
greet()(); // logs 'Hi Hammad'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment