Q. What will be the output of the following JavaScript code?
Code:
<script>
let str1 = new String("IncludeHelp!");
let str2 = new String("IncludeHelp!");
document.getElementById("test").innerHTML = (str1==str2);
</script>
β
Correct Answer: (B)
false