调用匿名函数的骚操作

Posted xiaojianwei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了调用匿名函数的骚操作相关的知识,希望对你有一定的参考价值。

问:如何将1输出: function(){console.log(1)}()
答:

  • (function(){console.log(1)}())
  • 1,function(){console.log(1)}()
  • +function(){console.log(1)}()
  • -function(){console.log(1)}()
  • ~function(){console.log(1)}()
  • !function(){console.log(1)}()
  • new function(){console.log(1)}()
  • 0function(){console.log(1)}()

以上是关于调用匿名函数的骚操作的主要内容,如果未能解决你的问题,请参考以下文章

Gremlin中匿名函数的应用

Gremlin中匿名函数的应用

匿名函数函数式函数

(十六)golang--匿名函数

自调用匿名函数(匿名闭包)解析与调用

自调用匿名函数(匿名闭包)解析与调用