JavaScript Set has() 함수 (값 존재 여부 확인)

Set.has() 함수를 사용하여 Set에 특정 값을 갖고 있는지 확인하는 방법을 소개합니다.

1. Syntax

Set.has(value)는 Set가 value를 갖고 있으면 true를 리턴하며 그렇지 않으면 false를 리턴합니다.

interface Set<T> {
    has(value: T): boolean;
}

2. Set.has()로 특정 값을 갖고 있는지 확인

new Set()으로 Set 객체를 생성할 수 있고, add(value)로 Set에 value를 추가할 수 있습니다.

그리고 Set.has(value)로 Set이 어떤 value를 갖고 있는지 확인할 수 있습니다.

const set1 = new Set();
set1.add('a');
set1.add('b');
set1.add('c');

console.log(set1.has('a'));
console.log(set1.has('c'));
console.log(set1.has('e'));
console.log(set1.has('f'));

Output:

true
true
false
false
Loading script...

Related Posts

codechachaCopyright ©2019 codechacha