为什么这个就不输出?? function shu(x,y){ if(x>y){ return x; } else{return y;} var b=shu(5,3); document.write(b);
函数少了个大括号。
function shu(x,y){
if(x>y){
return x;
}
else{return y;}
var b=shu(5,3);
document.write(b);