javascript Set find code example

Example 1: check if set has value js

const mySet = new Set();

// Add value to set
mySet.add(15);

console.log(mySet.has(33)) // expected output: false
cosole.log(mySet.has(15)) // expected output: true

Example 2: set in javascript

// set is used for storing unique values
const firstSet = new Set([1, 2, 3]);

firstSet.add('hi'); //adding value to set

firstSet.add(3); //this will not give any error and it will also not be added

firstSet.delete('hi');//removing value from set

console.log(firstSet.has('hi'));//checking 'hi' is in the set or not

// showing all values in the set
console.log(firstSet);
for (const entry of firstSet.values()) {
    console.log(entry);

Example 3: js new array from new set

return Array.from(new Set(this.posts.map(e => e.category)))

Example 4: 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) ;