When I try to compare two numbers using JavaScript Number() function, it returns false value for equal numbers. However, the grater-than(">") and less-than("<") operations return true.
var fn = 20;
var sn = 20;
alert(new Number(fn) === new Number(sn));
This alert returns a false value. Why is this not returns true?