const handlerChexbox = ({ target: { dataset: { i } } }) => { tasks[i].done = !tasks[i].done; renderTasks(tasks); };