Skip to content

Latest commit

 

History

History

classy-extentions

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

The goal of this kata is to train the basic OOP concepts of inheritance and method overriding.

You will be preloaded with the Animal class, so you should only edit the Cat class.

Task

Your task is to complete the Cat class which extends Animal and replace the speak method to return the cats name + meows. e.g. 'Mr Whiskers meows.'

The name attribute is accessible in the class with this.name.

Reference: Oracle docs