JavaScriptのTypedArray.includes()関数
TypedArrayオブジェクトのincludes()関数は値を受け取り、この型付き配列に指定された要素が含まれているかどうかを確認します。配列に指定された要素が含まれている場合はtrueを返し、そうでない場合はfalseを返します。
構文
その構文は次のとおりです
typedArray.includes()
例
<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 ]); document.write("Contents of the typed array: "+int32View); document.write("<br>"); var contains = int32View.includes(66); if(contains) { document.write("Array contains the specified element"); }else { document.write("Array doesn’t contains the specified element"); } </script> </body> </html>
出力
Contents of the typed array: 21,19,65,21,14,66,87,55 Array contains the specified element
例
<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 ]); document.write("Contents of the typed array: "+int32View); document.write("<br>"); var contains = int32View.includes(762); if(contains) { document.write("Array contains the specified element"); }else { document.write("Array doesn’t contains the specified element"); } </script> </body> </html>
出力
Contents of the typed array: 21,19,65,21,14,66,87,55 Array doesn’t contains the specified element
-
JavaScript Array.of()関数
JavaScriptのArray.of()メソッドは、パラメーター値として変数を使用して新しい配列インスタンスを作成するために使用されます。 構文は次のとおりです- Array.of(elements....) 上記の要素は、パラメータ値としての値です。 ここで、JavaScriptでArray.of()メソッドを実装しましょう- 例 <!DOCTYPE html> <html> <body> <h2>Demo Heading</h2> <p>Click the
-
JavaScript array.includes()関数
JavaScriptのarray.includes()メソッドは、配列に指定された要素が含まれているかどうかを確認するために使用されます。 構文は次のとおりです- array.includes(ele, start) 上記のパラメータeleは、検索する要素です。開始パラメータは、検索を開始する位置です。 ここで、JavaScriptでarray.includes()メソッドを実装しましょう- 例 <!DOCTYPE html> <html> <body> <h2>Car Variant</h2> &n