“Event loop” refers to the code that actually processes events, calling their callbacks. An “event queue” is the list of events that are waiting to run, like the events array in our examples here. You may see event loops called “message loops” or “message pumps”, but these mean roughly the same thing.