Lets say I have an observable and if that emits a new value, I need to update 20 objects. I could either create one big subscription, that iterates through an array that holds those objects, and then modifies them. Or I could do one subscription for each object, that does a singular update of the current one.
Would one of those variants be faster than the other, or are they equally in terms of performance?