Webcomplete.vim: complete words from your browser in Neovim
github.com1 pointsby thalesmello0 comments
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/).