Multiple Choices
(Choose 1 answer)
var Person = [{firstName:"Mai", lastName:"Nguyen", age:46}, {firstName: "Nga", lastName:"Tran", age:40}];document.getElementById("demo").innerHTML=Person[0]["firstName"]<
p id="demo"></p>
What is the HTML content of <p> tag when above code runs?
A. The HTML content of <p> tag is "Mai"
B. The HTML content of <p> tag is "Nga"
C. The HTML content of <p> tag is "Mai Nguyen"
D. Syntax error