Null Safety

Learn how to handle null pointer exceptions in Kotlin using the null safety feature.

We'll cover the following...

Probably the most notorious exception in the Java world is NullPointerException. The reason behind this exception is that every object in Java can be null. The code here shows us why ...