Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Kotlin
easy
Kotlin
scope functions let apply run
Single-choice MCQ
What gets printed here?
val name: String? = null val len = name?.let { it.length } ?: -1 println(len)