react push object into array code example
Example 1: add new array at the back of react state
this.setState(prevState => ({
myArray: [...prevState.myArray, {"name": "object"}]
}))
Example 2: add new array at the back of react state
this.setState(prevState => ({
myArray: [ {"name": "object"}, ...prevState.myArray]
}))