//定义函数 function obj(a,b){ var a=5 ,b=4 ,c=cc; if(a>b){ return a } document.write(" a 和 b 的较大值是:"+"
" +a); }else{ return b } }