Pass a function to setState in React

Share this video with your friends

Send Tweet

In React, when you want to set the state which calculation depends on the current state, using an object can lead to state inconsistency. This is due to the fact that React can batch multiple state changes for performance reasons.

This lesson shows you how using a function in setState can solve that.

TEVIN GACHAGUA
~ 7 years ago

Awesome. I got lots of bugs in my code coz I did not know this. Thanks