(23)
Answer (Choose 1 answer)
A. The HTML content of <p> tag is "Saab, Volvo, BMW
B. None of the others
C. The HTML content of <p> tag is "Saab"
D. The HTML content of <p> tag is
<p id="demo"></p>
<script>
var cars = ["Saab", "Volvo", "BMW"];document.getElementById("demo").innerHTML = cars;
</script>
What is the output of above code?