Skip to content

Instantly share code, notes, and snippets.

@garmjs
Last active July 29, 2022 17:20
Show Gist options
  • Save garmjs/78e4ec278278562b4a3e to your computer and use it in GitHub Desktop.
Save garmjs/78e4ec278278562b4a3e to your computer and use it in GitHub Desktop.
React Delete item
let taskIndex = parseInt(e.target.value, 10);
console.log('remove task: %d', taskIndex, this.state.list[taskIndex]);
this.setState(state => {
state.list.splice(taskIndex, 1);
return {items: state.list};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment