Where And When Should You Use Null (In My Opinion)
Into Null handling and null checks can be quite a hot topic for some developers. On one hand, it can be used as a default “no value yet” initializer for variables, and is easy to check if said variable holds a value or not. But on the other hand, it can lead to a bloated codebase, where you constantly need to check for null. This blog post is not meant as an attack on null....