函數的定義和執行一起完成:
(function arr(){?console.log('我是兩個括號');})()
!function(){console.log('1223');}()
+function(){console.log('563')}();
-function(){console.log(53);}();
~function(){console.log(563);}()
匿名函數:自執行函數在全局作用域下不進行預解析,當代嗎執行到這里的時候,定義和執行一起完成
var ff=function(){
console.log(‘我是匿名函數’);
}