Is there a benefit to using forEach instead of subscribe with a keyboard input event observable?
问题 I'm trying to find confirmation if I should prefer to use .forEach instead of .subscribe when I want to listen in on Angular's FormControl.valueChanges observable. FormControl API In Angular's Documentation for forms they use .forEach without really explaining why and say you don't really need to understand it. Document Link I also know from this answer that .forEach will bundle a sort of finite duration of events/incoming values into a promise. So I tried to test both .forEach and .subscribe