JavaScript 函数的定义-调用、注意事项 函数定义函数语句定义function(a,b){returna+b;}表达式定义varadd=function(a,b){returna+b};//函数表达式 函数的定义