You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// As we know cat , dog or any other animals will inherit some properties an methods from Animal class.
// So instead of writing the properties and methods again for the subclass (cat,dog) we can inherit them from base class (Animals) using "extends" keyword
class Dog extends Animal {
// You can add any different properties and methods if required for dog class.
// It will now have all the properties and methods defined in Animal class.