Q. What will be the output of the following JavaScript code?
Code:
< p id="demo">< /p>
< script>
var a = "10"; var b = "10"; var c = a * b; document.getElementById ("demo").innerHTML = c; < /script>
β
Correct Answer: (B)
100