JavaScriptのSetオブジェクトのaddAllメソッドの使用方法と例


方法1: スプレッド演算子を使用する方法

const set1 = new Set([1, 2, 3]);
const set2 = new Set([...set1, 4, 5, 6]);
console.log(set2); // Set {1, 2, 3, 4, 5, 6}

方法2: Array.fromメソッドを使用する方法

const set1 = new Set([1, 2, 3]);
const array = [4, 5, 6];
const set2 = new Set([...set1, ...Array.from(array)]);
console.log(set2); // Set {1, 2, 3, 4, 5, 6}

方法3: forEachメソッドを使用する方法

const set1 = new Set([1, 2, 3]);
const array = [4, 5, 6];
array.forEach(item => set1.add(item));
console.log(set1); // Set {1, 2, 3, 4, 5, 6}

これらの方法を使用することで、既存のSetオブジェクトに複数の要素を追加することができます。ご参考までに、上記のコード例を使って自分のコードに組み込むことができます。