All quizzes
KotlinCoreFill the blank

Fill in the blank with the operator that calls `.length` only if `s` is non-null (returning null otherwise) instead of throwing. Replace ____ in: `val len = s____length`

val s: String? = readLine()
// returns null when s is null, never throws
val len = s____length