Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Koala extends Animal
  2. {
  3.     type = animalType.KOALA;
  4.     constructor()
  5.     {
  6.         super();
  7.         console.log("OH IM A NEW KOALA IM HAPPY TO BE ALIVE!");
  8.     }
  9. }
  10.  
  11. // please create a new classe for the lion, inheriting from animal...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement