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

Hàm TypedArray.values ​​() trong JavaScript

Các giá trị () hàm của TypedArray trả về một đối tượng vòng lặp giữ các giá trị của mảng đã nhập. Phương thức next () trả về phần tử tiếp theo trong đối tượng trình vòng lặp.

Cú pháp

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

typedArray.values()

Ví dụ

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var typedArray = new Int32Array([11, 5, 13, 4, 15, 3, 17, 2, 19, 8 ]);
      var iterator = typedArray.values();
      document.write("Contents of the typed array: ");
      for(i=0; i<typedArray.length; i++) {
         document.writeln(iterator.next().value);
      }
   </script>
</body>
</html>

Đầu ra

Contents of the typed array: 11 5 13 4 15 3 17 2 19 8