const removeNewNotification = () => notifiactions.map((notification) => {
return { ...notification, newNotification: false }
})
notifiactions 배열의 모든 요소에 대해 새로운 알림(newNotification)을 false로 설정하는 함수다.
이 함수를 더 간단하게 리팩터링하고 싶다.
화살표 함수 축약를 해보겠다.
const removeNewNotification = () => notifiactions.map(notification => ({ ...notification, newNotification: false }))
'나를 위한 개발기록' 카테고리의 다른 글
oh-My-Zsh 세팅 (0) | 2023.04.02 |
---|---|
git commit 합치기 (0) | 2023.03.05 |
Git 원격에 올라간 commit 중 없애고 싶은 커밋 삭제 (0) | 2023.03.04 |
이미 create-react-app 했을 경우 typescript 적용하는 법 (0) | 2023.03.04 |
git 과거 커밋 수정하기 (0) | 2022.12.30 |