The React event loop is mentioned in some articles about the Virtual DOM. Some examples (bold is mine):
Whenever you call
setState
on a component, React will mark it as dirty. At the end of the event loop, React looks at all the dirty components and re-renders them.
or
Most notably, changes to the virtual DOM are not guaranteed to take effect immediately. This allows React to wait until the end of its event loop before it even touches the real DOM at all.
However, I can’t find any documentation about this event loop. Does it exist at the moment? What stages does it have? What does it affect?