kotlin ternary code example
Example 1: Kotlin ternary
if (a) b else c
println(if (true) "yes" else "no") // "yes"
println(if (false) "yes" else "no") // "no"
Example 2: kotlin else if
if (a > b) {
// if
} else if (a == b) {
// else if
} else {
// else
}