Q. What will be the output of 0 == '0'? (A) true (B) false (C) undefined (D) NaN ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) true Explanation: == compares values after type conversion, so 0 == '0' is true.