Have you ever written code like this? const result = a || b; It works pretty well until it doesn't. Using the logical OR to get a value or a fallback works 90% of the time you use it. But the other 10% are actually when you hit falsy values, which m...
deepdive.hashnode.dev2 min read
Good one Oliver
This is one of those things where I know there's a difference between them but always forget exactly what it is ๐. I don't think I'll forget it again after reading this. Thanks Oliver Jumpertz
Adarsh Thakur
Web Developer ๐ค ๐ฎ๐ณ
Little thing, can you save many unwanted checks. Thanks for sharing.