Q. What will be the output of the following JavaScript code?
Code:<script>
var x = 10 + 20 * 5;
document.getElementById("tes").innerHTML = x;
</script>
β
Correct Answer: (A)
110
<script>
var x = 10 + 20 * 5;
document.getElementById("tes").innerHTML = x;
</script>
You must be Logged in to update hint/solution