Kotlin Keyword to Reference Single Parameter
Learn about an important keyword and how to use it in Kotlin.
We'll cover the following...
The keyword it
In Kotlin, the keyword it
is a shorthand notation that allows us to reference a single parameter in a lambda or anonymous function, thereby making our code more concise and readable. We typically use it
when we have a lambda with only one parameter. Instead of explicitly naming the parameter, ...