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

Hàm TypedArray.keys () trong JavaScript

Hàm key () của đối tượng typedArray tương tự như các mục nhập nhưng, nó trả về một đối tượng trình vòng lặp có chứa các chỉ số của mảng đã nhập.

Cú pháp

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

typedArray.keys()

Ví dụ

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var int32View = new Int32Array([21, 64, 89, 65, 33, 66, 87, 55]);
      document.write("Contents of the typed array: "+int32View);
      document.write("<br>");
      var it = int32View.keys();
      for(i=0; i<int32View.length; i++) {
         document.writeln(it.next().value);
      }
   </script>
</body>
</html>

Đầu ra

Contents of the typed array: 21,64,89,65,33,66,87,55
0 1 2 3 4 5 6 7