Awesome Kotlin
Difference with Scala
Kotlin takes the best of Java and Scala, the response times are similar as working with Java natively, which is a considerable advantage over Scala.
Programming tips
What’s differences between isNullOrBlank and isNullOrEmpty
-
isNummOrEpty: Returns
true
if this nullable char sequence is eithernull
or empty (Length is zero). -
isNullOrBlank: Returns
true
if this nullable char sequence is eithernull
or empty or consists solely of whitespace characters.