Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

วัตถุอาร์กิวเมนต์ใน JavaScript คืออะไร?


อ็อบเจ็กต์อาร์กิวเมนต์ใน JavaScript เป็นอ็อบเจ็กต์ ซึ่งแสดงถึงอาร์กิวเมนต์ของฟังก์ชันที่กำลังดำเนินการ ไวยากรณ์มีสองอาร์กิวเมนต์:

[function.]arguments[p]

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อเรียนรู้ว่าอะไรคืออ็อบเจกต์อาร์กิวเมนต์ใน JavaScript

การสาธิตสด

<html>
   <body>
      <script>
         function functionArgument(val1, val2, val3) {
            var res = "";
            res += "Expected Arguments: " + functionArgument.length;
            res += "<br />";
            res += "Current Arguments : " + arguments.length;

            res += "<br />";
            res += "Each argument = "

            for (p = 0; p < arguments.length; p++) {
               res += "<br />";
               res += functionArgument.arguments[p];
               res += " ";
            }
            document.write(res);
         }
         functionArgument(20, 50, 80, "Demo Text!","Hello World", new Date())
      </script>
   </body>
</html>