Kotlin - Null Safety
Examine this Kotlin code snippet calling a Java method that returns a platform type:
What issue might occur if
val textLength = javaApi.getDescription().length
What issue might occur if
getDescription() returns null at runtime?