If there isn't a folder yet create a constructor folder
A constructor function is similar to C++ or other languages constructors, an example is below:
function Car(type, model, color) {
this.type = type;
this.model = model;
this.color = color;
this.start = function() {
console.log("Engine starting...");
};
}
const car1 = new Car("Sedan", "Civic", "Blue");
const car2 = new Car("SUV", "CRV", "Red");
console.log(car1);
Reference this: https://drive.google.com/file/u/1/d/1gwcgkMZDAUTUM7klxQcF9IJGR9pfc_kk/view?usp=sharing for designing it
Create the Set Object defined within this chart