Skip to content

Instantly share code, notes, and snippets.

@lushijie
Created June 2, 2016 01:23
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 lushijie/b8ac7f49466058cf1e40810d3f569fd2 to your computer and use it in GitHub Desktop.
Save lushijie/b8ac7f49466058cf1e40810d3f569fd2 to your computer and use it in GitHub Desktop.
函数定义并立即执行
var func = (function f(a) {
console.log(a);
return f;
})('Hello World');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment