Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyKotlinsafe callSingle-choice MCQ

What is the difference between `?.let { }` running its block versus not running it?

val name: String? = null name?.let { println(it.uppercase()) }