JavaScript/javascript 기초 공부하기
2020. 5. 2.
every, some, Set, startsWith, includes, endsWidth
every 렌더링시에 조건을 만족하는 경우에 자주쓰는 every 모든 조건을 충족해야 true가 반환된다 const arr = [2, 3, 4]; const isBiggerThenOne = arr.every(key => key>1); console.log(isBiggerThenOne); // true some 하나의 조건만 충족해도 true를 반환한다 const arr = [1, 2, 0, -1, -2]; const res = arr.some((key) => key < 0); console.log(res); // true Set Set은 중복되지 않은 자료구조이다, const test = new Set(); test.add(1); test.add(1); test.add(2); test.add(2); te..