当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript TypedArray.keys()用法及代码示例


typedArray 对象的 keys() 函数类似于条目,但它返回一个包含类型数组索引的迭代器对象。

用法

其语法如下

typedArray.keys()

示例

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

输出

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

相关用法


注:本文由纯净天空筛选整理自Samual Sam大神的英文原创作品 TypedArray.keys() function in JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。