输出的结果:
代码:
//定义函数
function bj(a,b){
if(a>b){
return a;
}
else if(a=b){
return a;
}
else{
return b;
}
}
//调用函数,实现下面两组数中,返回较大值。
document.write(" 5 和 4 的较大值是:"+ bj(5,4)+"<br>");
document.write(" 6 和 3 的较大值是:"+ bj(6,3) );
function abb(a,b) {
if (a>=b) {
return a;
} else {
return b;
}
}
哪个大 返回哪个 或者用三目运算符 return a > b ? a : b