Skip to content

Instantly share code, notes, and snippets.

@codingnninja
Created August 7, 2019 00:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingnninja/b53aa28ea2e15781bf15bb2240cdc81c to your computer and use it in GitHub Desktop.
Save codingnninja/b53aa28ea2e15781bf15bb2240cdc81c to your computer and use it in GitHub Desktop.
Delete food items.
deleteFoodItem(id) {
const foodItems = this.state.foodItems.filter( item => item.id !== id );
this.setState({foodItems: foodItems});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment