Skip to content
Advertisement

Does React not work with js Set:s (the datatype)?

I’m trying to use the js Set datastructure with React but it will not update like I thought it would. Consider the following two two examples. Buttons are supposed to go green when pressed.

The first one with a Set (NOT WORKING)

JavaScript
JavaScript

And the same example but with an array instead (WORKING)

JavaScript
JavaScript

Advertisement

Answer

React decides whether to rerender through comparing old and new state. If they are === the component will not rerender.

.add does not create a new set; it mutates and returns the old one. This means that the old and new state will point to the same place in memory. So they will always be equal when compared.

Always avoid state mutation in React, else unexpected behavior can occur. Here, since the new component state (in the pressed state variable) is === to the old component state, no re-rendering occurs.

Make a new Set instead when setting state:

JavaScript

JavaScript
JavaScript
Advertisement