JavaScript 中的 TypedArray.values() 函数


TypedArray 的 values() 函数返回一个迭代器对象,它包含类型化数组的值。next() 方法返回迭代器对象中的下一个元素。

语法

其语法如下

typedArray.values()

示例

 活动演示

<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>

输出

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

更新于: 25-Jun-2020

38 次浏览

开启你的 事业

通过完成课程获得认证

开始
广告