Question: How would you modify the constructor to fix this erroe: "ReferenceError: Must call super constructor in derived class before accessing 'this'..."?

  1. render(props);
  2. super(props);
  3. super(this);
  4. this.super();

Answer: The correct answer of the above question is Option B:super(props);