Working with Set objects and calculating Set size

Easy
4
75.0% Acceptance

In this lab, you will work with Set objects in JavaScript. A Set is a collection of values, which allows only unique values and doesn't maintain any particular order.

Your task is to create a Set object, add some unique values to it, and calculate its size. You will also need to export the Set object as a default export and log its size to the console.