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