Question: How would you modify the constructor to fix this erroe: "ReferenceError: Must call super constructor in derived class before accessing 'this'..."?
- render(props);
- super(props);
- super(this);
- this.super();
Answer: The correct answer of the above question is Option B:super(props);