PROS Interview Question

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

Interview Answer

Anonymous

Mar 8, 2019

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

1