TL;DR π
If you want to use
this.props
inside constructor of derived class, use super(props).
While checking react code, you might have come across a line super(props)
, sometimes super()
. Ever wondered what’s the difference between two?
Why do we need to pass props
? Do we always need to pass props
?
Consider the example below.
|
|
Every time we are writing a component, we are extending it from React component (The base component class) and that’s really important if we don’t do that we would be missing a ton of react functionality.
Let’s step out of react world for just a moment and let’s mimic our own component class
|
|
Lets make a new game
|
|
So you might think, when we initialized a new game, a constructor is called and that should be printed out, unfortunately we get an error
says : Must call super constructor before accessing ’this’ . Loosely translated, call a super constructor in derived class before basically doing anything.
Problem is we are extending the base class but we never actually called its constructor and that’s super important to do in the derived class’s constructor (Inside Game’s constructor here), we need to make sure that we’re calling the class (it’s constructor) we are extending, especially in React because that’s how we call all the magic setup stuff that React does and takes care of out of the box for us. so we call super()
|
|
Now try to instantiate again.
|
|
What does super(props) do then?
Lets look at this example:
|
|
|
|
We are passing two props to Food component. You can think of it like we are creating two objects for Food class new Food({item : "pineapple", nutrition: "10"})
|
|
We get output as Undefined even though we have props. OK, what’s happening here is if we want to access this.props
in the constructor, we have to pass props in super (super(props)
). This is kind of bizzare, lets consider this example.
|
|
However if you do
|
|
To conclude, If you want to use this.props
inside constructor, you need to pass props in super()
, otherwise itβs okay to not pass props to super() as we see that irrespective of passing it to super(), this.props
is available inside render()
function.
Hopefully that was not convoluted and crazy, until next time. Happy Coding! π π»
If you found this helpful, please give a shoutout to @gsavitha_ and share this article to help others. For more articles like this, subscribe to my Newsletter and get the latest updates straight to your inbox.