About
This page is about comparison operator in Javascript.
List
Order Comparison and Nan
The “invalid number value” NaN is neither greater than nor less than any other value.
var x = 1;
var y = "bar";
console.log( x < y ); // false
console.log( x > y ); // false