返回值到底有什么意义?
<!DOCTYPE HTML>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数</title>
<script type="text/javascript">
function add(x,y)
{
if(x>y)
{
return x;
}
else if(x<y)
{
return y;
}
else
{
return "两数相等"
}
}
document.write(" 5 和 4 的较大值是:"+add(5,4)+"<br>");
document.write(" 6 和 3 的较大值是:"+add(6,3));
</script>
</head>
<body>
</body>
</html>
首先这段代码是否正确?还有返回值到底有什么作用?return x是什么意思?return y又是什么意思?更重要是return “两数相等有事什么意思?