Is there a simple way to merge ES6 Maps together (like Object.assign)? And while we\'re at it, what about ES6 Sets (like Array.concat)?
Object.assign
Array.concat
merge to Map
let merge = {...map1,...map2};