push array react code example
Example 1: React Hooks append state
setTheArray(currentArray => [...currentArray, newElement])
Example 2: add new array at the back of react state
this.setState(prevState => ({
myArray: [...prevState.myArray, "new value"]
}))
Example 3: usestate array push
setTheArray([...theArray, newElement]);
Example 4: react state array push
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 5: add new array at the back of react state
this.setState(prevState => ({
myArray: [ {"name": "object"}, ...prevState.myArray]
}))