निम्न JavaScript कोड का आउटपुट क्या होगा
What will be the output of the following JavaScript code
let a = 5;
let b = "5";
console.log(a == b);
A
true
B
false
C
Error
D
undefined
Explanation
Correct Answer: A) true