Safe Navigation Operator

As a developer, we have often run into scenarios where we are doing some assignments, running parent object queries, etc. but forget to do a null check. As a result we get a NullPointer Exception. To avoid this, we have to explicitly do some checks, thus increasing our lines of code. With the Safe Navigation […]

Safe Navigation Operator Read More ยป