this.state
State is an object that determines how the component renders and behaves. It is the place where the data comes from. It allows you to create components that are dynamic and interactive.
State can be defined as key-value pair defined in each component.this.state -- Updated on event calls.render function will be called again to re-render the change in state using this.setState.