Using Expressions Instead of Statements
Learn to use expressions in Kotlin and how they are better than statements.
We'll cover the following...
A statement is a block of code that doesn’t return anything. An expression, on the other hand, returns a new value. Since statements produce no results, the only way for them to be useful is to mutate the state—whether that’s changing a variable, changing a data structure, or performing some kind of IO.
Functional ...