Introduction
In Kotlin, Any is the base type for all other types. It lets you store any kind of value in one place.
When you want a variable to hold any kind of data, like numbers, text, or objects.
When you write functions that can accept any type of input.
When you need to store mixed types in a collection like a list or array.
When you want to write generic code without specifying exact types.