Still Apple keeps shooting their foot with their software. I'd love to see an update to iOS and Mac OS that doesn't feel sluggish. They nailed hardware, software is sorely lacking.
if (foo == null) { ... }
Because `undefined` gets coerced to `null`, it saves you from writing: if (foo === null || foo === undefined) { ... }
And, because it's shorter, it's even allowed by [some JS linters](https://standardjs.com/).