#2694
Medium JavaScript Event emitter
74.9% acceptance
Mar 2, 2026
289
38
Design an EventEmitter class. This interface is similar (but with some differences) to the one found in Node.js or the Event Target interface of the DOM. The EventEmitter should allow for subscribing to events and emitting them.
Your EventEmitter class should have the following two methods:
subscribe - This method takes in two arguments: the name of an event as a string and a callback function. This callback function will later be called when the event is emitted.
An event should be able to have multiple listeners for the same event. When emitting an event with multiple callbacks, each should be called in the order in which they were subscribed. An array of results should be returned. You can assume no callbacks passed to subscribe are referentially identical.
The subscribe method should also return an object with an unsubscribe method that enables the user to unsubscribe. When it is called, the callback should be removed from the list of subscriptions and undefined should be returned.
emit - This method takes in two arguments: the name of an event as a string and an optional array of arguments that will be passed to the callback(s). If there are no callbacks subscribed to the given event, return an empty array. Otherwise, return an array of the results of all callback calls in the order they were subscribed.
Solution
TypeScript
Time O(1)
Space O(1)
type Callback = (...args: any[]) => any;
type Subscription = {
unsubscribe: () => void;
};
class EventEmitter {
private events: Map<string, Callback[]>;
constructor() {
this.events = new Map();
}
subscribe(eventName: string, callback: Callback): Subscription {
if (!this.events.has(eventName)) {
this.events.set(eventName, []);
}
this.events.get(eventName)!.push(callback);
return {
unsubscribe: () => {
const listeners = this.events.get(eventName);
if (listeners) {
const idx = listeners.indexOf(callback);
if (idx !== -1) listeners.splice(idx, 1);
}
},
};
}
emit(eventName: string, args: any[] = []): any[] {
const listeners = this.events.get(eventName);
if (!listeners || listeners.length === 0) return [];
return listeners.map((cb) => cb(...args));
}
}
/**
* const emitter = new EventEmitter();
*
* function onClickCallback() { return 99 }
* const sub = emitter.subscribe('onClick', onClickCallback);
*
* emitter.emit('onClick'); // [99]
* sub.unsubscribe(); // undefined
* emitter.emit('onClick'); // []
*/