TIL 2022-04-07 Immer
Immer은 불변성 관리를 조금 더 쉽게 해주는 자바스크립트 라이브러리다. const baseState = [ { title: "Learn TypeScript", done: true }, { title: "Try Immer", done: false } ] const nextState = baseState.slice() // shallow clone the array nextState[1] = { // replace element 1... ...nextState[1], // with a shallow clone of element 1 done: true // ...combined with the desired update } // since nextState was freshly cloned, using ..