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

ฟังก์ชัน TypedArray.set() ใน JavaScript


ฟังก์ชัน set() ของวัตถุ TypedArray ยอมรับอาร์เรย์ตัวเลขที่แสดงถึงดัชนีและคัดลอกเนื้อหาของอาร์เรย์ที่ระบุไปยังอาร์เรย์ปัจจุบันโดยเริ่มจากดัชนีที่กำหนด

ไวยากรณ์

ไวยากรณ์ของมันคือดังต่อไปนี้

typedArray.set()

ตัวอย่าง

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var typedArray1 = new Int32Array([11, 5, 13, 4, 15, 3, 17, 2, 19, 8 ]);
      document.write("Contents of the typed array: "+typedArray1);
      document.write("<br>");
      var typedArray2 = new Int32Array([110, 215, 316, 916, 616, 117, 311 ]);
      typedArray1.set(typedArray2, 3);
      document.write("Result: "+typedArray1);
   </script>
</body>
</html>

ผลลัพธ์

Contents of the typed array: 11,5,13,4,15,3,17,2,19,8
Result: 11,5,13,110,215,316,916,616,117,311