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

Hàm TypedArray.fill () trong JavaScript

Hàm fill () của đối tượng TypedArray thay thế tất cả các phần tử bắt buộc / mong muốn của mảng bằng giá trị chỉ định (cố định). Hàm này chấp nhận ba số, một đại diện cho giá trị cố định và hai số còn lại đại diện cho chỉ mục đầu và cuối của phần phần tử sẽ được thay thế (giá trị kết thúc là tùy chọn).

Cú pháp

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

int32View.fill(464, 3);

Ví dụ

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

Đầu ra

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