JavaScript Inheritance Lab
Easy
4
82.4% Acceptance
In this lab, you will practice using JavaScript inheritance concepts by creating Person
and Student
classes. You will learn how to create classes, inherit from a parent class, and work with the constructor
, extends
, super
, and this
keywords.
Note: Use ECMAScript 2015 (ES6) class syntax in this lab.