PROS interview question

How do you manage state for a React.js component?

Interview Answer

Anonymous

8 Mar 2019

One can update the state of a react component by using "this.setState()" and passing a JSON object which represents the state.

1