I have a structure of
Array(4) [Map(1),Map(1),Map(1),Map(1)]
All keys are different there. I am trying find the common way to merge it in one Map.
I know the way for two Maps:
let merged = new Map([...first, ...second])
But for this solution I need more common way.