Kotlin - Null Safety
What will be the output of the following Kotlin code?
val list: List= listOf("apple", null, "banana") val filtered = list.filterNotNull() println(filtered)
