var x = function() {};
var y = function() {};
alert(x === y); // is false;
Why is x not equal to y if they are both initialised to the same value?
Why is x not equal to y if they are both initialised to the same value? |
||||
| show 1 more comment |
|
From MDN:
Clearly, your objects are distinct from each other, and refer to different memory locations. The equals comparison operator checks if both operands refer to the same object, not if they are are replicas. Consider the fact that |
|||||||
|
|
When you compare objects in JavaScript, you are checking to see if they are the same object, not if they are identical objects. |
|||
|
|
Because they aren't the same function object. The comparator does not look at the function body. |
|||
|
|
|
The ECMA standard gives some precise rules on how strict equality works in JavaScript. Basically, as @Quentin said, if you are comparing two objects (other than Number, String, Boolean, null or undefined), it only returns true if they are the same object. That is not the case here. Consider this code:
This will give |
|||
|
|
|
From Spec-11.9.6: The Strict Equality Comparison Algorithm
|
|||
|
|
function(){}thatx === yreturn false. No framework has anything to do with that. I edited my question so it is simpler. I supppose it has nothing to do with the fact I'm unit testing i guess :) – François Wahl Nov 23 '12 at 13:30onChange. That object is used in another Javascript file I'm writing tests against. During the initialisation method of that other file I'm testing theonChangeproperty is set to a function. Passing a mock of the object I initialisedonChangein the mock tofunction(){}and wanted to test that after initialise has been executedonChangeis not stillfunction(){}. – François Wahl Nov 23 '12 at 13:39.toString(). Could you then not doif (x.toString() === y.toString()) ...– SAJ14SAJ Nov 23 '12 at 13:42