so do you mean that I can do something like this: [...new Set(a), ...new Set(b)] insted of [...[...new Set(a)], ...[...new Set(b)]] ?
[...new Set(a), ...new Set(b)]
[...[...new Set(a)], ...[...new Set(b)]]
Loading collection data...
so do you mean that I can do something like this:
[...new Set(a), ...new Set(b)]
insted of[...[...new Set(a)], ...[...new Set(b)]]
?