Kotlin: Nullable Types
1.Safe Calls (?.) - If the object is null, the expression which is using the safe call operator will return null instead of throwing a - Null Pointer Exception. - It allows you to safely access properties or methods of an object that may be null. EXAMPLE OUTPUT EXAMPLE OUTPUT