///////////////////////// // PET CLASS ///////////////////////// class Pet { ///////////////////////// // PROPERTIES ///////////////////////// name; age; totalLegs; }
/**************************** * DOG CLASS ***************************/ class Dog extends Pet { constructor(){} }