Library System with Inheritance
A base class Item stores a title and has a describe method. Create a subclass Book that also stores an author. Override describe in Book so it returns title followed by ' by ' followed by author.
Premium
JavaScript
Console