Kotlin Basics - Null
Basically, Kotlin attempts to resolve NullPointerException(NPE) by making the data types as nou nullable
Variable Declaration
If you try to assign a null value to a variable, the following compile error will be thrown by IDE
To make the variable nul...
vigneshprabhu.dev2 min read