我的代码到底哪里有问题?
<!DOCTYPE HTML>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数</title>
<script type="text/javascript">
function compare(a,b){
//定义函数
if(a>b){
return a;
}
else if(a==b){
return "一样大";
}
else{
return b;
}
}
document.write(" 5 和 4 的较大值是:"+"compare(5,4)"+"<br>");
document.write(" 6 和 3 的较大值是:"+"compare(6,3)" );
</script>
</head>
<body>
</body>
</html>
我的代码到底哪里有问题,为什么浏览器读不出来???