I mean not equal, but literally one....two things pointing to the same place in memory.
For example, a
and b
here should theoretically be identical...b
is a sort of pointer to a
.
var a = function(){alert("hi");}
var b = a;
===
is not the answer....two things can be the same in every way but not literally the same object in memory.
Edit: ===
IS the answer! Silly me.