Answer (Choose 1 answer)
A. The result of the code is "Total: 16+4"
B. The result of the code is "Total: NaN"
C. The result of the code is "Total:20"
D. The result of the code is "Total: 164"
Consider the code:
<body>
<p id="demo"></p>
<script>
var x = "Total:" + 16 + 4:
document.getElementById("demo").innerHTML = x;
</script></body>
What is the output of the code?