deleteItem(event) {
const conf = confirm(`Are you sure?`); //72
let newTodo = this.state.todos.slice();
if(conf) {
newTodo = newTodo.splice(newTodo.indexOf(index), 1); //75
this.setState({
todos: newTodo,
})
}
}
Failed to compile
./src/App.js
Line 72: Unexpected use of 'confirm' no-restricted-globals
Line 75: 'index' is not defined no-undef
deleteItem(event) {
const conf = confirm(`Are you sure?`); //72
let newTodo = this.state.todos.slice();
if(conf) {
newTodo = newTodo.splice(newTodo.indexOf(index), 1); //75
this.setState({
todos: newTodo,
})
}
}
Failed to compile
./src/App.js
Line 72: Unexpected use of 'confirm' no-restricted-globals
Line 75: 'index' is not defined no-undef
Если уже так перенес, то как сейчас поступить? Как выявить проблему?