Javascript
 Computer >> コンピューター >  >> プログラミング >> Javascript

JavaScriptのTypedArray.fill()関数


TypedArrayオブジェクトのfill()関数は、配列のすべての必須/必須要素を指定値(固定)に置き換えます。この関数は、1つは固定値を表し、他の2つは置換される要素の部分の開始インデックスと終了インデックスを表す3つの数値を受け入れます(終了値はオプションです)。

構文

その構文は次のとおりです

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

  1. JavaScript array.includes()関数

    JavaScriptのarray.includes()メソッドは、配列に指定された要素が含まれているかどうかを確認するために使用されます。 構文は次のとおりです- array.includes(ele, start) 上記のパラメータeleは、検索する要素です。開始パラメータは、検索を開始する位置です。 ここで、JavaScriptでarray.includes()メソッドを実装しましょう- 例 <!DOCTYPE html> <html> <body>    <h2>Car Variant</h2> &n

  2. JavaScript array.toLocaleString()関数

    JavaScriptのarray.toLocaleString()関数は、配列の要素を文字列として返し、コンマなどのロケール固有の文字列で区切られます。文字列が変換される言語タグを指定するパラメータとしてロケールを使用できます。 以下は、array.toLocaleString()関数のコードです 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" con