반응형
//중복되지 않은 데이터를 관리할때 사용
const test = new Set()
test.add(1)
test.add(1)
test.add(2)
test.add(3)
for(const item of test) {
console.log(item)
}
출력은 1,2,3 으로만 중복되지 않게출력된다.
반응형
'NodeJs' 카테고리의 다른 글
some (0) | 2020.01.10 |
---|---|
has (0) | 2020.01.10 |
Object.assign vs spread (0) | 2020.01.10 |
map and filter (0) | 2020.01.10 |
foreach (0) | 2020.01.10 |