Introduction
Sometimes, you want to call a method when you only know its name during the program. send helps you do that easily.
You want to call different methods based on user input.
You need to run a method whose name is stored in a variable.
You want to avoid writing many if-else statements for method calls.
You want to make your code flexible and reusable.
You want to call private methods from outside the class (careful!).