當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript TypedArray.entries()用法及代碼示例


TypedArray 的 entries() 函數返回對應 TypedArray 對象的迭代器,使用它,您可以檢索它的鍵值對。它返回數組的索引和該特定索引中的元素。

用法

其語法如下

typedArray.entries()

示例

<html>
<head>
   <title>JavaScript Example</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.entries();
      for(i=0; i<int32View.length; i++) {
         document.write(it.next().value);
         document.write("<br>");
      }
   </script>
</body>
</html>

輸出

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

示例

如果在迭代器指向數組末尾時嘗試訪問數組的下一個元素,結果將是 undefined。

<html>
<head>
   <title>JavaScript Example</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.entries();
      for(i=0; i<int32View.length; i++) {
         document.write(it.next().value);
         document.write("<br>");
      }
      document.write(it.next().value);
   </script>
</body>
</html>

輸出

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

相關用法


注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 TypedArray.entries() function in JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。