Computer >> Máy Tính >  >> Lập trình >> Javascript

Hàm TypedArray.includes () trong JavaScript

Hàm include () của đối tượng TypedArray chấp nhận một giá trị và xác minh xem mảng đã nhập này có chứa phần tử được chỉ định hay không. Nếu mảng chứa phần tử đã cho, nó trả về true, còn lại thì trả về false.

Cú pháp

Cú pháp của nó như sau

typedArray.includes()

Ví dụ

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var int32View = new Int32Array([21, 19, 65, 21, 14, 66, 87, 55 ]);
      document.write("Contents of the typed array: "+int32View);
      document.write("<br>");
      var contains = int32View.includes(66);
      if(contains) {
         document.write("Array contains the specified element");
      }else {
         document.write("Array doesn’t contains the specified element");
      }
   </script>
</body>
</html>

Đầu ra

Contents of the typed array: 21,19,65,21,14,66,87,55
Array contains the specified element

Ví dụ

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var int32View = new Int32Array([21, 19, 65, 21, 14, 66, 87, 55 ]);
      document.write("Contents of the typed array: "+int32View);
      document.write("<br>");
      var contains = int32View.includes(762);
      if(contains) {
         document.write("Array contains the specified element");
      }else {
         document.write("Array doesn’t contains the specified element");
      }
   </script>
</body>
</html>

Đầu ra

Contents of the typed array: 21,19,65,21,14,66,87,55
Array doesn’t contains the specified element