Here you'll see about kotlin language.
- Functions
- Classes
- Collection
- functions.Iterators
- Variables
In Kotlin, by default a collection is immutable. So you can't add or subtract values from that collection once it's initially created.
The Difference between arrayOf and listOf is that Arrays have a fixed size while List can adjust their size dynamically.