react setstate add to array code example
Example 1: how to add array data on state react
this.setState({ myArray: [...this.state.myArray, 'new value'] })
this.setState({ myArray: [...this.state.myArray, ...[1,2,3] ] })
Example 2: how to update array in react state
this.setState(prevState => ({
arrayvar: [...prevState.arrayvar, newelement]
}))
Example 3: add object to array setstate
To push to the beginning of the array do it this way
this.setState( prevState => ({
userFavorites: [{id: 3, title: 'C'}, ...prevState.userFavourites]
}));
Example 4: can we add new state property using setstate in react
How to become a pro with React setState() in 10 minuteswww.freecodecamp.org › news › get-pro-with-react-set...