javascript関数の声明と戻り値


<1>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <!--js        -->
    <script type="text/javascript">
        //  javascript       ,          。        c#               (    c#  ,  c#               function   )

        function add(i, j) {  //              ,               。
            return i + j;

        }
        alert(add(5, 6)); //  11

        //js            ,               undefined
        function sum(x, y) {
            if (x > y) {
                alert(x + y);
            }          
        }
        var z = sum(2, 6); //  2    6  sum        。               undefined。
        alert(z); //       undefined
                
    </script>
</head>
<body>

</body>
</html>