Open the console, for example, in Chrome or Firebug. Try the following:
console.log(0>=null); console.log(0>null); console.log(0==null);
http://jsbin.com/royicecidi/1/edit?js,console
So, how can 0 be greater than or equal to >= null if it is not greater than > and not equal to == ?
source share