-
-
Save reime005/1b327a93f09c708f21147a45c9ce5dd6 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
// not so good | |
console.log(this.state.test); // 5 | |
this.setState({ test: 12 }); | |
console.log(this.state.test); // might be 5 or 12 | |
// good | |
this.setState({ test: 42 }, () => { console.log(this.state.test); // 42 }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment