Promptles
React & Frontend

State

beginner

Definition

The information a building block remembers and can change over time: like the current value in a search box, whether a menu is open, or how many items are in a cart. When the state changes, the part of the screen tied to it redraws itself to match.

In the wild

A shopping cart icon shows the number 3. That number is the cart's state. Add another item, and the state becomes 4. And the icon instantly redraws itself to display the new number, without you refreshing anything.

More from React & Frontend