Event Emitter Lab

Medium
33.3% Acceptance

In this lab, you will create a simple event emitter implementation, similar to the EventEmitter class provided by Node.js. An event emitter allows you to register listeners (functions) for events and emit them when necessary. You will implement the on and the emit methods in your class.