第一种:
(function(){ console.log(‘hello world”) })()
第二种:
(function(){ console.log(‘hello world’) }())
第三种:
!function(){ console.log(‘hello world’) }()