const a = [1, 2, 3]; const b = ['foo', 'bar']; const c = new Set(['x', 'x', 'y', 'x']); a.push(...b, ...c); console.log(a); // Array [ 1, 2, 3, "foo", "bar", "x", "y" ]