
- ReactJS Tutorial
- ReactJS - Home
- ReactJS - Introduction
- ReactJS - Installation
- ReactJS - Features
- ReactJS - Advantages & Disadvantages
- ReactJS - Architecture
- ReactJS - Creating a React Application
- ReactJS - JSX
- ReactJS - Components
- ReactJS - Nested Components
- ReactJS - Using Newly Created Components
- ReactJS - Component Collection
- ReactJS - Styling
- ReactJS - Properties (props)
- ReactJS - Creating Components using Properties
- ReactJS - props Validation
- ReactJS - Constructor
- ReactJS - Component Life Cycle
- ReactJS - Event management
- ReactJS - Creating an Event−Aware Component
- ReactJS - Introduce Events in Expense Manager APP
- ReactJS - State Management
- ReactJS - State Management API
- ReactJS - Stateless Component
- ReactJS - State Management Using React Hooks
- ReactJS - Component Life Cycle Using React Hooks
- ReactJS - Layout Component
- ReactJS - Pagination
- ReactJS - Material UI
- ReactJS - Http client programming
- ReactJS - Form Programming
- ReactJS - Controlled Component
- ReactJS - Uncontrolled Component
- ReactJS - Formik
- ReactJS - Conditional Rendering
- ReactJS - Lists
- ReactJS - Keys
- ReactJS - Routing
- ReactJS - Redux
- ReactJS - Animation
- ReactJS - Bootstrap
- ReactJS - Map
- ReactJS - Table
- ReactJS - Managing State Using Flux
- ReactJS - Testing
- ReactJS - CLI Commands
- ReactJS - Building and Deployment
- ReactJS - Example
- Hooks
- ReactJS - Introduction to Hooks
- ReactJS - Using useState
- ReactJS - Using useEffect
- ReactJS - Using useContext
- ReactJS - Using useRef
- ReactJS - Using useReducer
- ReactJS - Using useCallback
- ReactJS - Using useMemo
- ReactJS - Custom Hooks
- ReactJS Advanced
- ReactJS - Accessibility
- ReactJS - Code Splitting
- ReactJS - Context
- ReactJS - Error Boundaries
- ReactJS - Forwarding Refs
- ReactJS - Fragments
- ReactJS - Higher Order Components
- ReactJS - Integrating With Other Libraries
- ReactJS - Optimizing Performance
- ReactJS - Profiler API
- ReactJS - Portals
- ReactJS - React Without ES6 ECMAScript
- ReactJS - React Without JSX
- ReactJS - Reconciliation
- ReactJS - Refs and the DOM
- ReactJS - Render Props
- ReactJS - Static Type Checking
- ReactJS - Strict Mode
- ReactJS - Web Components
- Additional Concepts
- ReactJS - Date Picker
- ReactJS - Helmet
- ReactJS - Inline Style
- ReactJS - PropTypes
- ReactJS - BrowserRouter
- ReactJS - DOM
- ReactJS - Carousel
- ReactJS - Icons
- ReactJS - Form Components
- ReactJS - Reference API
- ReactJS Useful Resources
- ReactJS - Quick Guide
- ReactJS - Useful Resources
- ReactJS - Discussion
ReactJS - Constructor
In general, constructor method in a class is used to set the initial value of the newly created object. React also use the constructor() for the same initialization purpose. Yet in react, constructor is used for state initialization and event binding purposes as well.
Let us learn how to use constructor in the react component in this chapter.
Initialization of props
As we know, every react component will have props and state. The props should be initialized in the constructor using super keyword. If the props is not properly initialized in a class based react component, then this.props will not work properly and introduce bugs. Let us create a simple component with proper constructor method.
class Welcome extends React.Component { constructor(props) { super(props); } render() { return ( <div><h3>Welcome {this.props.name}</h3></div> ) } }
Here,
super(props) will initialize the props in the Welcome component.
this.props.* will provide access to props details.
The component can be used as shown below −
function App() { return ( <div className="container"> <div style={{ padding: "10px" }}> <div> <Welcome name={'John'} /> </div> </div> </div> ); }
The component will render the welcome message as shown below −

Initialization of the state
Similar to props initialization, initialization of state is very important and can be done in the constructor. In general, React provides different ways to set and get the state information in a component. They are as follows −
Using this.state = obj
This is used to initialize the state using object
this.state = { pageSize: 10 }
Using this.state.*
This is used to access the state information. (this.state.pageSize)
Using this.setState()
It is a function accepting either an object or a lambda function. Used to set the state information
this.setState({ pageSize: 20 }) this.setState((state, props) => ({ pageSize: state.pageSize + 1 }))
Let us create a simple component with proper state initialization
class Welcome extends React.Component { constructor(props) { super(props); this.state = { welcomeMessage: "Hello" } } render() { return ( <div><h3>{this.state.welcomeMessage}, {this.props.name}</h3></div> ) } }
Here, this.state is used to set the default (initial) value of the welcome message. The component can be used as shown below −
function App() { return ( <div className="container"> <div style={{ padding: "10px" }}> <div> <Welcome name={'John'} /> </div> </div> </div> ); }
The component will render the welcome message as shown below −

Event binding
Similar to props and state initialization, event handler has to be properly bind so that the this will be correctly accessed in the event handler. Let us create new button in our Welcome component to change the welcome message and add an event handler to handle the onClick event of the button as shown below −
import React from "react"; class Welcome extends React.Component { constructor(props) { super(props); this.state = { welcomeMessage: "Hello" } this.changeMessageHandler = this.changeMessageHandler.bind(this) } changeMessageHandler() { this.setState(prevState => ({ welcomeMessage: prevState.welcomeMessage == "Hello" ? "Welcome" : "Hello" })); } render() { return ( <div> <div><h3>{this.state.welcomeMessage}, {this.props.name}</h3></div> <div><button onClick={this.changeMessageHandler}>Change welcome message</button></div> </div> ) } } export default Welcome;
Here,
Step1 − Add a button with an onClick event
<div><button onClick={this.changeMessageHandler}>Change welcome message</button></div>
Step 2 − Set this.changeMessageHandler method as onClick event handler
Step 3 − Bind the event handler, this.changeMessageHandler in the constructor
this.changeMessageHandler = this.changeMessageHandler.bind(this)
Step 4 − Added the event handler and updated the state using this.setState.
changeMessageHandler() { this.setState(prevState => ({ welcomeMessage: prevState.welcomeMessage == "Hello" ? "Welcome" : "Hello" })); }
The component can be used as shown below −
function App() { return ( <div className="container"> <div style={{ padding: "10px" }}> <div> <Welcome name={'John'} /> </div> </div> </div> ); }
The component will render the welcome message as shown below −

Summary
Constructor is very important in the class based react component. It's main job is to setup the component in such a way that the props, state and events are configured correctly and ready to access by the component events and render methods.
To Continue Learning Please Login