Skip to content

Instantly share code, notes, and snippets.

@mosijava
Created July 27, 2018 10:49
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 mosijava/0adb8c30e0ea2782a9be33eb77fa3347 to your computer and use it in GitHub Desktop.
Save mosijava/0adb8c30e0ea2782a9be33eb77fa3347 to your computer and use it in GitHub Desktop.
a very simple closure example
function sayHelloToClosures(yourName) {
var text = 'Hello Closures from' + yourName;
var sayAlert = function() { alert(text); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment