const updates = Object.keys(req.body)
const allowedUpdates = ["description", "completed"]
const isValidOperation = updates.every((update) => allowedUpdates.includes(update))
배열은 키와 값으로 있는데 키값만 배열로 빼낸다
배열의 모든 요소가 주어진 함수를 통과하는지 테스트
배열이 특정 요소를 포함하고 있는지 판별합니다.