ES6
ES6
Setting State with React
this.setState({ myArray: […this.state.myArray, ‘new value’] }) //simple value this.setState({ myArray: […this.state.myArray, …[1,2,3] ] }) //another array
this.setState({ myArray: […this.state.myArray, ‘new value’] }) //simple value this.setState({ myArray: […this.state.myArray, …[1,2,3] ] }) //another array