Question: Which statement sets the Person constructor as the parent of the Student constructor in the prototype chain?
- `Student.parent = Person;`
- `Student.prototype = new Person();`
- `Student.prototype = Person;`
- `Student.prototype = Person();`
Answer: The correct answer of the above question is Option B:`Student.prototype = new Person();`