I'm at a total loss.
I have a function..
Number.prototype.abs = function () {
return this >= 0 ? this : this * -1;
};
..that returns the absolute value of a number..
(50).abs(); // 50
(-50).abs(); // 50
..but that doesn't compare correctly..
(50).abs() === 50; // False
..sometimes.
(50).abs() == 50; // True
(-50).abs() === 50; // True
The thing about it, is that it works in Chrome 12, and Firefox 4, but not in IE 9, Safari 5, or Opera 11.
I don't see anything wrong with the code, and since it works in Chrome and Firefox, it's something browser specific but I don't know what.
Update: The browser specific difference is strict mode support. I run my code in strict mode, which introduces some changes that make my code work. The reason it failed in the browsers it did, is because they have an incomplete or missing strict mode.
Why is it returning false?
===is a strict equality check. Meaning the types on each side must also match. – Jason McCreary May 18 '11 at 2:35