各位大神帮我看看出来什么问题,为什么老是输出第二个值呢
<!DOCTYPE HTML>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数</title>
<script type="text/javascript">
//定义函数
function themax(a,b)
{
if(a<b)
{
return b;
}
else if(a=b)
{
return a;
}
else
{
return a;
}
}
c1=themax(5,4);
c2=themax(6,3);
//函数体,判断两个整数比较的三种情况
//调用函数,实现下面两组数中,返回较大值。
document.write(" 5 和 4 的较大值是:"+c1+"<br>");
document.write(" 6 和 3 的较大值是:" +c2);
</script>
</head>
<body>
</body>
</html>