I was just trying something in javascript and came across this scenario for the javascript equality operator, which baffled me
My questions are,
1) Why ""==0
is true ?
2) If "0"==0
and ""==0
is true
then why ""=="0"
is false
?
Any explanation and the pointers for more reading will be great.