Ruby - Inheritance
In Ruby, how can a child class call the original method from its parent class after overriding it?
super inside an overridden method to call the parent's version.supersuper is called, it runs the parent method with the same name.super inside the overridden method. -> Option Asuper inside the overridden method. [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions