Q. What is the default behavior of setState in class components?
β
Correct Answer: (A)
It merges the new state with the existing state
Explanation: setState merges the provided object with the current state asynchronously.