Question:Which is the correct way to create image object in JavaScript for the following <img> element? <img src="graphicsA.gif" />
A document.image[0] B document.images[0] C window.image[0] D new Image()
+ AnswerB
+ Report