cara menghapus elemen pada indeks array tertentu dalam reaksi js

var array = [...this.state.people]; // make a separate copy of the array
  var index = array.indexOf(e.target.value)
  if (index !== -1) {
    array.splice(index, 1);
    this.setState({people: array});
  }
Yellowed Yacare