react push array to state code example

Example 1: react state array push

how to add array data on state react
this.setState({ myArray: [...this.state.myArray, 'new value'] }) //simple value
this.setState({ myArray: [...this.state.myArray, ...[1,2,3] ] }) //another array

Example 2: how to add array data on state react

this.setState({ myArray: [...this.state.myArray, 'new value'] }) //simple value
this.setState({ myArray: [...this.state.myArray, ...[1,2,3] ] }) //another array

Example 3: push values to state array class react

this.setState(prevState => ({
  arrayvar: [...prevState.arrayvar, newelement]
}))

Example 4: add array of object to state react

setTheArray(currentArray => [...currentArray, newElement])