I have been trying to understand Javascript equality. Can you please tell me why the following line returns false?
alert((function a(){}) == (function a(){})) // false
But as you can see from the following cases < returns false but <= returns true, which means == should return true but it is false. Do you have any idea, WHY?
alert((function a(){}) < (function a(){})) // false
alert((function a(){}) > (function a(){})) // false
alert((function a(){}) <= (function a(){})) // true
alert((function a(){}) >= (function a(){})) // true

truewhen the first one returnsfalse... – alfasin Jul 14 '12 at 5:04function a(){} < "g"returnstrue. – orald Jul 14 '12 at 5:08function...) and is comparing the strings in that case. – Greg Hewgill Jul 14 '12 at 5:09