Skip to content

Instantly share code, notes, and snippets.

@oahehc
Created July 23, 2018 00:48
Show Gist options
  • Save oahehc/317a9e359e8365ad425b607042ca6006 to your computer and use it in GitHub Desktop.
Save oahehc/317a9e359e8365ad425b607042ca6006 to your computer and use it in GitHub Desktop.
js closure
function f(a) {
return function(b) {
console.log(a, b);
}
}
var func = f('123');
func('321'); // 123 321
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment