関数名オブジェクトのlengthは、指定した関数に必要な引数の数を返します。
<script> function myFunc1(r) { return (r * r * 3.14); } function myFunc2(b, h) { return (b * h / 2); } document.write("<div>" + myFunc1.length + "</div>"); document.write("<div>" + myFunc2.length + "</div>"); </script>
“);
document.write(“
“);