is a set an object in javascript code example
Example 1: Sets can be used to store __________. in js
let my= new Set()
my.add(1)
my.add("qw")
Example 2: object set js
let nombres = [10, 45, 75, 10 ,24,45 ] ;
//let monSet = new Set(nombres) ;
let monSet = new Set() ;
monSet.add('100') ;
monSet.add('280') ;
//monSet.delete('100');
console.log(monSet.size) ;