I am still learning the basics of javaScript and I don\'t understand why this happens.
Having type coercion false == \"false\"would be converted into:
false == \"false\"
These are different kind of items. "string" and boolean.
"string"
boolean
So:
false.toString() == "false"