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

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


ฟังก์ชัน filter() ของ TypedArray ยอมรับค่าสตริงที่แสดงชื่อของฟังก์ชัน ทดสอบว่าองค์ประกอบทั้งหมดในอาร์เรย์ผ่านการทดสอบที่นำมาใช้โดยฟังก์ชันที่ให้มาหรือไม่ สร้างอาร์เรย์ใหม่พร้อมองค์ประกอบทั้งหมดที่ผ่านการทดสอบ

ไวยากรณ์

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

typedArray.filter(function_name)

ตัวอย่าง

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var int32View = new Int32Array([64, 89, 65,21, 14, 66, 87, 55 ]);
      document.write("Contents of the typed array: "+int32View);
      document.write("<br>");
      function testResult(element, index, array) {
         var ele = element>35
         return ele;
      }
      result = int32View.filter(testResult);
      document.write("Elements that are greater than 35: "+result);
   </script>
</body>
</html>

ผลลัพธ์

Contents of the typed array: 64,89,65,21,14,66,87,55
Elements that are greater than 35: 64,89,65,66,87,55