예시 1: 더해버리기

[1, 2, 3].reduce((acc, elm) => (acc + elm)) // 6

예시 2: 배열 내 오브젝트 싹다 합쳐버리기

const arr = [{ apple: 1, cat: 2 }, { dog: 3 }, { bird: 4}];
const res = arr.reduce((acc, elm) => ({ ...acc, ...elm }));

/*{
    "apple": 1,
    "cat": 2,
    "dog": 3,
    "bird": 4,
}*/