Last active
September 4, 2018 12:33
-
-
Save almond-bongbong/17a01d1191a05620cbf060ac725cf41f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this.state.count : 1 | |
incrementCount(){ | |
this.setState({count : this.state.count + 1}) | |
this.setState({count : this.state.count + 1}) | |
} | |
// this.state.count : 2 | |
incrementCount(){ | |
this.setState((prevState, props) => { | |
count: prevState.count + 1 | |
}); | |
this.setState((prevState, props) => { | |
count: prevState.count + 1 | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment