DEV Community

Discussion on: Fast & easy... React states management in one function

Collapse
 
efleurine profile image
Emmanuel

In the valueChange function where did you find the state variable. May be it should be obj variable ?

Collapse
 
genta profile image
Fabio Russo

In the second example?

The state is the obj variable.
You can see I’m creating an obj and using key-value pairs in It.
Then I’m passing the object to setState().

Collapse
 
kayis profile image
K • Edited

you defining obj, but then you use state. in non-strict mode this leads to the creation of a global variable, in strict mode this leads to an error.

After that you use obj again, so the new value saved in state in state isn't even used.

Thread Thread
 
genta profile image
Fabio Russo

Understood!