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\"
false == "false" // false
because, the boolean false is converted into 0, so, we compare 0 with "false" and the output is false