Ok, so I installed Linter on my Sublime editor while working on my node.js app. One of the things that it caught said that I should always use !== to compare an object to nu
It is even more simple
var x = null; if (x) 6 if (!x) 7
the result is
undefined 7