- Null Safety
- Safe Call Operator ( ?. )
- Elvis operator ( ?: )
- Not-null assertion operator ( !! )
A variable that doesn't refers to anything, refers to null. Null is a keyword to allow a variable refer to nothing or to check if it exists (comparison can be done with == or !=)