const mySet = new Set([1,2,3,4]) const additionalSet = [5,6,7,8,9] mySet = new Set([...mySet, ...additionalSet])