(Choose
1.var obj=document.createElement("img")
2.var tag=document.getElementById("demo")
3.
1 answer)
What statement is the right to append obj object to tag object in the 3rd line?
A. tag.innerHTML=obj
B. tag.value=obj
C. tag.text=obj
D. tag.appendChild(obj)
Q: 58