Will == and === work correctly in all browsers for DOM elements? If the code gets a reference to a raw DOM element in two different ways, will they be both == and === equal in all browsers?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
| show 6 more comments |
Yes, those equality operators will work as defined by the ECMAScript standard. One word of caution,
In most cases, you'll want to use the |
|||
|
trueifxandyare the same object. But this does not imply that various DOM methods must return references to the same DOM node so that they can be considered equal in JS. I didn't find anything in this regard in the DOM spec either. – Felix Kling Jan 18 at 21:48