|
|
|
|
|
by bluepnume
3000 days ago
|
|
One thing I've been finding increasingly while using Flow in javascript is, null-pointer exceptions aren't really much of a problem any more. Where they might have caused a bug, 90% of the time Flow will catch them, and insist that I do a null check and handle that case. And when they do crop up, it's usually more of a serious failure that I'm happy to trigger an exception early, rather than having it propagate further down the stack by using something like nothing.js. Especially given the list of gotchas. The fact that `Nothing` is not falsy is really problematic. I'm pretty convinced at this point that `a && a.b && a.b.c && a.b.c.d` is an anti-pattern in javascript anyway; if I'm that unsure about the structure of my data, I have more serious problems than just trying to avoid null pointers. |
|