-
every()
メソッドを使用する方法:const array1 = [1, 2, 3, 4, 5]; const array2 = [2, 4]; const containsAllElements = array2.every(element => array1.includes(element)); console.log(containsAllElements); // true
-
filter()
メソッドとlength
プロパティを使用する方法:const array1 = [1, 2, 3, 4, 5]; const array2 = [2, 4]; const containsAllElements = array2.filter(element => array1.includes(element)).length === array2.length; console.log(containsAllElements); // true
-
Set
オブジェクトを使用する方法:const array1 = [1, 2, 3, 4, 5]; const array2 = [2, 4]; const set1 = new Set(array1); const set2 = new Set(array2); const containsAllElements = array2.every(element => set1.has(element)); console.log(containsAllElements); // true
これらの方法はいずれも、every()
メソッドを使用して配列の各要素をチェックし、includes()
メソッドやhas()
メソッドを使用して要素の存在を確認しています。戻り値はすべてtrue
またはfalse
です。
このように、JavaScriptでは配列が別の配列のすべての要素を含んでいるかどうかを確認するためのさまざまな方法があります。使用する方法は、コードの要件やパフォーマンスへのニーズによって異なります。