July 24, 2020
has
메소드로 해당 값을 가지고있는지 확인할 수 있다.delete
메소드로 해당 값을 지울 수 있다.let mySet = new Set();
const arr = [1,1,2,3,4];
console.log(Array.from(new Set(arr))); // [1,2,3,4]
mySet.add('crong');
mySet.add('harry');
console.log(mySet.has('crong')); // true
mySet.delete('crong');
console.log(mySet.has('crong')); // false