函数的定义和执行一起完成:
(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(‘我是匿名函数’);
}