Which line of code shows how to display a nullable string's length and shows 0 instead of null?
println(b?.length ?? 0)
println(b == null? 0: b.length)
println(b?.length ?: 0)
println(b!!.length ?: 0)