Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to delete element at a particular index of array in react 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});
  }
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #delete #element #index #array #react #js
ADD COMMENT
Topic
Name
6+4 =