티스토리 뷰
반응형
- 여러 object로 구성된 array를 map으로 변환하고 싶은 니즈가 있어 찾아보았다.
const arr = [
{email: 'abc', age: 1},
{email: 'def', age: 2},
{email: 'ghi', age: 3},
{email: 'jkl', age: 4}
];
// reduce를 사용한 방법
const map1 = arr.reduce((acc, curr) => {
acc.set(curr.email, curr.age);
return acc;
}, new Map());
console.log('map1: ', map1);
// 기존에 내가 사용하던 방법
const map2 = new Map();
for(const { email, age } of arr) {
map2.set(email, age);
}
console.log('map2: ', map2);
/* 실행 결과
map1: Map(4) { 'abc' => 1, 'def' => 2, 'ghi' => 3, 'jkl' => 4 }
map2: Map(4) { 'abc' => 1, 'def' => 2, 'ghi' => 3, 'jkl' => 4 }
*/
- 기본적으로 for-of 또는 forEach를 사용해왔으나, reduce를 사용하는 방법이 있어 메모하였음. 자세한 설명은 상단 링크를 참고!
'Dev. > javascript' 카테고리의 다른 글
[JS] 배열에서 falsy한 값 제거하기 (0) | 2021.11.05 |
---|---|
[JS] 두 배열을 하나의 오브젝트로 합치기 (0) | 2021.11.05 |
[JS] 느낌표 두개 (2) | 2021.09.10 |
[JS] optional chaining (0) | 2021.08.10 |
[JS] nullish coalescing operator (널 병합 연산자) (0) | 2021.08.10 |
댓글
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- AWS
- Java
- Vault
- Node.js
- 코딩테스트
- JEST
- dev
- react
- terraform
- spring boot
- AWS IoT
- postgresql
- etc
- Docker
- Git
- kotlin
- pgloader
- Spring Cloud Config
- JPA
- mysql
- Gradle
- eureka
- IntelliJ
- javascript
- Linux
- hashicorp
- Database
- Puppeteer
- jQuery
- shell
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함