new Set([iterable]); ์ฝ์ ์์๋๋ก ์์ ์ํ, Set์๋ ์ค๋ณต๋ ๊ฐ์ด ๋ค์ด์ฌ ์ ์๋ค. const setTest = new Set(); setTest.add(1);// {1} setTest.add(2);// {1, 2} // 1์ addํด๋ set์ 1์ด ์์ด์ ๋ฌด์๋จ setTest.add(1);// {1, 2} arr.filter(callback(element[, index[, array]])[, thisArg]) callback : ์์๋ฅผ ๊ฑธ๋ฌ์ฃผ๋ ํจ์, ์กฐ๊ฑด์ ๋ง์ง ์์ผ๋ฉด ์ญ์ element : ์ฒ๋ฆฌํ ํ์ฌ ์์ index(option) : ์ฒ๋ฆฌํ ํ์ฌ ์์์ ์ธ๋ฑ์ค const filterArr = [1, 2, 3, 4, 5]; filterArr.filter(function(v){..