有什么改进的地方吗
<script type="text/javascript">
//定义函数
function number(x,y){
//函数体,判断两个整数比较的三种情况
if(x>y){
alert(x);
return x;
}
else if(x<y){
alert(y);
return y;
}
else{
document.write("两数相等");
}
}
var req1=number(5,4);
var req2=number(6,3);
//调用函数,实现下面两组数中,返回较大值。
document.write(" 5 和 4 的较大值是:"+req1+"<br>");
document.write(" 6 和 3 的较大值是:"+req2 );
</script>