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


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


TypedArray 对象的 fill() 函数用指定值(固定)替换数组的所有必需/期望元素。该函数接受三个数字,一个表示固定值,另外两个表示要替换的元素部分的开始和结束索引(结束值是可选的)。

用法

其语法如下

int32View.fill(464, 3);

示例

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var int32View = new Int32Array([64, 89, 65,21, 14, 66, 87, 55]);
      document.write("Contents of the typed array:"+int32View);
      document.write("<br>");
      result = int32View.fill(464, 3);
      document.write("Contents of the typed array after fill:"+int32View);
   </script>
</body>
</html>

输出

Contents of the typed array:64,89,65,21,14,66,87,55
Contents of the typed array after fill:64,89,65,464,464,464,464,464

相关用法


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