问答详情
源自:5-4 有参数的函数

這裏爲什麽會出現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

提问者:慕婉清8311323 2017-03-24 13:53

个回答

  • PudgeSoo
    2017-03-24 15:10:21

    第一个document.write(x+"、"+y+"、"+z+"和:"+sum+"<br/>");中的x+"、"+y+"、"+z+"和:"+sum+"<br/>"没有定义过,所以输出undefined,  x,y,z是方法需要的参数,但不是实际声明过的参数,是调用函数时需要传进去的,