js自调用匿名函数的三种写法

第一种:

(function(){
     console.log(‘hello world”)
})()

 第二种:

(function(){
     console.log(‘hello world’)
}())

 第三种:

!function(){
     console.log(‘hello world’)
}()
原文地址:https://www.cnblogs.com/lwwen/p/5786397.html