0 votes
in ReactJS by

What is the difference between setState() and replaceState() methods?

1 Answer

0 votes
by

When you use setState() the current and previous states are merged. replaceState() throws out the current state, and replaces it with only what you provide. Usually setState() is used unless you really need to remove all previous keys for some reason. You can also set state to false/null in setState() instead of using replaceState().

Related questions

0 votes
asked Apr 15, 2022 in ReactJS by Robindeniel
+1 vote
asked Mar 2, 2020 in ReactJS by RShastri
...