[javascript] 중복 제거 (with new Set();)

Chaedie·2022년 6월 14일
0

Javascript - PS

목록 보기
4/24
post-custom-banner

중복 제거할 때 보통 new Set();을 사용한다.

JS에서 new Set();을 좀 더 간지나게 아래처럼 사용하면 간략하고 좋다.

const names = ['a', 'b', 'c', 'a', 'b'];
const uniqueNamesWithArrayFrom = Array.from(new Set(names));

// uniqueNamesWithArrayFrom = ['a', 'b', 'c']
profile
TIL Blog - Today's Intensive Learning!

0개의 댓글