JavaScriptのTypedArray.copyWithin()関数
TypedArrayオブジェクトのcopyWithin()関数は、このTypedArrayの内容をそれ自体の中にコピーします。このメソッドは3つの数値を受け入れます。最初の数値は要素のコピーを開始する配列のインデックスを表し、次の2つの数値はデータのコピー(取得)する配列の開始要素と終了要素を表します。
構文
その構文は次のとおりです
obj.copyWithin(3, 1, 3);
例
<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); int32View.copyWithin(5, 0, 5); document.write("<br>"); document.write("Contents of the typed array after copy: "+int32View); </script> </body> </html>
出力
Contents of the typed array: 21,64,89,65,33,66,87,55 Contents of the typed array after copy: 21,64,89,65,33,21,64,89
例
3番目のパラメーター(データのコピー元となる配列の終了要素)に3番目のパラメーターを渡す必要はありません。この関数は、配列の最後までコピーします。
<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); int32View.copyWithin(5, 0); document.write("<br>"); document.write("Contents of the typed array after copy: "+int32View); </script> </body> </html>
出力
Contents of the typed array: 21,64,89,65,33,66,87,55 Contents of the typed array after copy: 21,64,89,65,33,21,64,89
-
JavaScript array.includes()関数
JavaScriptのarray.includes()メソッドは、配列に指定された要素が含まれているかどうかを確認するために使用されます。 構文は次のとおりです- array.includes(ele, start) 上記のパラメータeleは、検索する要素です。開始パラメータは、検索を開始する位置です。 ここで、JavaScriptでarray.includes()メソッドを実装しましょう- 例 <!DOCTYPE html> <html> <body> <h2>Car Variant</h2> &n
-
JavaScript array.toLocaleString()関数
JavaScriptのarray.toLocaleString()関数は、配列の要素を文字列として返し、コンマなどのロケール固有の文字列で区切られます。文字列が変換される言語タグを指定するパラメータとしてロケールを使用できます。 以下は、array.toLocaleString()関数のコードです 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" con