Q. What is the output of the following JavaScript code?
Code:
<script>
var a = 10 + 20 + "5";
document.getElementById("demo").innerHTML = a;
</script>
β
Correct Answer: (B)
305