I'm making a todo list and I don't really understand this whole complete check function, like where does the item come from and so...can anybody help me to explain! Thank you so much for helping me!
This is the function:
const handleComplete = (todo) => {
setTodos(
todos.map((item) => {
if(item.id === todo.id){
return {...item, completed: !item.completed}
}
return item
})
)
}
As Your code suggests, you are trying to update a single item from your list of todos elements, so when your
handleComplete
function is called, a todo object is passed, so in thesetTodos
function, with the help of the map first we find the item from collection of todos which matches with id of passed todo object.If found, we will return an object,
...item
it helps to preserve all the elements present in the item object and only update thecomplete
key.