Set functions and manipulations

Easy
11
2
50.0% Acceptance

In this lab, you will learn about ES6 Sets by working with basic manipulations, including adding, finding, and deleting elements. Sets store unique values and provide useful methods such as 'add', 'has', and 'delete'. Our task is to implement a custom class, including these methods to manage a Set instance.