// Removing item from array by index const myElement = this.state.list.splice(index, 1); // Removing item from array by value const myElement = this.state.list.splice(this.state.list.indexOf(value), 1);