這裏爲什麽會出現UNDEFINED
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数传参</title>
<script type="text/JavaScript">
function add3(x,y,z)
{
sum = x + y +z;
document.write(x+"、"+y+"、"+z+"和:"+sum+"<br/>");
}
document.write(add3(5,8,3));
document.write(add3(7,1,4));
document.write(add3("sss",123,"725672385098365"))
</script>
</head>
<body>
</body>
</html>
5、8、3和:16
undefined7、1、4和:12
undefinedsss、123、725672385098365和:sss123725672385098365
undefined