Introduction
In Kotlin, operators are functions to make code clearer and let you customize how operators work with your own types.
When you want to add two numbers using the + operator.
When you want to compare two objects with ==.
When you want to define how your custom class adds or multiplies values.
When you want to use operators like [] to get or set values in your class.
When you want to make your code look simple but do complex actions behind the scenes.