请问我哪里出错了 不能输出
<!DOCTYPE HTML>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数</title>
<script type="text/javascript">
//定义函数
function rec(a,b){
if(a>b){
return a;
// alert("输出较大的值:"+a);
}
else
{
return b;
// alert("输出较大的值:"+b);
}
}
rec(5,4);
rec(6,3);
document.write(" 5 和 4 的较大值是:"+a"<br>");
document.write(" 6 和 3 的较大值是:"+b);
</script>
</head>
<body>
</body>
</html>