Introduction
The super keyword helps you call a method from a parent class inside a child class. It lets you reuse and extend code easily.
When you want to add extra steps to a method but keep the original behavior.
When you override a method but still need the parent class's version to run.
When you build on top of existing code without rewriting it.
When you want to keep your code organized and avoid duplication.