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

JavaScriptのTypedArray.lastIndexOf()関数


TypedArrayオブジェクトのlastIndexOf()関数は値を受け取り、型付き配列に指定された要素が含まれているかどうかを確認します。その場合、この関数は、指定された要素が見つかった配列のインデックスを返します。要素が複数回発生した場合、この関数はそれらの中で最後のインデックスを返します。配列に指定された要素が含まれていない場合、indexOf()関数は-1を返します。

構文

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

typedArray.lastIndexOf(50)

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var int32View = new Int32Array([21, 19, 65, 21, 14, 66, 87, 55, 66, 97, 66 ]);
      document.write("Contents of the typed array: "+int32View);
      document.write("<br>");
      var contains = int32View.lastIndexOf(66);
      document.write("Specified element occurred at the index: "+contains);
   </script>
</body>
</html>

出力

Contents of the typed array: 21,19,65,21,14,66,87,55,66,97,66
Specified element occurred at the index: 10

  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