Maybe this question is easy,but I can't understand now.
String.prototype.self=function()
{
return this;
}
var s="s";
alert("s".self()=="s".self()) //false;
alert(s.self()==s.self()) //false;
If you know the reason, please tell me why the result is "false".