EventEmitter Lab in JavaScript

Medium
15
1
36.7% Acceptance

In this lab, you will practice EventEmitter in JavaScript. EventEmitter is a popular design pattern for handling asynchronous events. You are going to implement an EventEmitter class, emit custom events, listen to those events, and unlisten to the events after they are triggered. Use ES6 classes and modern syntax for your implementation.

Make sure to export the class that you've created