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

What does the safe call operator `?.` return when it is called on a `null` receiver?

val name: String? = null val len: Int? = name?.length println(len)