Skip to content

Instantly share code, notes, and snippets.

@lushijie
Created December 28, 2017 10:12
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/4f330c922a8218f4972099f287ef96c6 to your computer and use it in GitHub Desktop.
Save lushijie/4f330c922a8218f4972099f287ef96c6 to your computer and use it in GitHub Desktop.
声明一个函数并接着执行一次
let 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