I found that there are some QAs about spread operator time complexity but those are all for array.
Is the spread operator time complexity same for object?
a = { ...b }
What is the time complexity of the above statement if the key count of b is N?
is it O(N)?