#null
Read more stories on Hashnode
Articles with this tag
Eliminating The Billion-Dollar Mistake forever · TL;DR: Use the Null Object Pattern to eliminate null checks and simplify your code. Problems...
Avoiding the Null Trap in Privilege Mode Drivers · TL;DR: Using null pointers in critical code can crash your system Problems Memory access...
Your code is not safer using this operator TL;DR: Don't propagate nulls. Problems NULL propagation Harder to read code Hacky...
You can avoid null if you try · TL;DR: Don't use null for real places Problems Coupling Unexpected Results Solutions Model the unknown location...
You need to model something optional. Have you tried collections? · TL;DR: Collections are fantastic. And Polymorphic. Problems Null If Pollution...
Our code is more robust and legible. But we hide NULL under the rug TL;DR: Avoid Nulls and undefined. If you avoid them you will never need...