语法一:
function sayWhat(msg){
alert(msg);
}
sayWhat("你好");
等价于下面语法(js闭包(匿名自执行函数)语法):
(function(msg){
})("你好");