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

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


ฟังก์ชัน map() ของอ็อบเจ็กต์ TypedArray ยอมรับชื่อของฟังก์ชันและเรียกใช้ในทุกองค์ประกอบของอาร์เรย์ที่พิมพ์แล้วส่งคืนผลลัพธ์

ไวยากรณ์

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

typedArray.map()

ตัวอย่าง

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var int32View = new Int32Array([11, 5, 13, 4, 15, 3, 17, 2, 19, 8 ]);
      document.write("Contents of the typed array: "+int32View);
      document.write("<br>");
      function square(ele) {
         return ele*ele;
      }
   var result = int32View.map(square);
   document.write("Specified element occurred at the index: "+result);
</script>
</body>
</html>

ผลลัพธ์

Contents of the typed array: 11,5,13,4,15,3,17,2,19,8
Specified element occurred at the index: 121,25,169,16,225,9,289,4,361,64