0 votes
in JavaScript by

How to get a particular value using the tagged name?

a) getElementbyID()

b) getElementsbyName()

c) getElementsbyTagName()

d) getTagName()

1 Answer

0 votes
by

Answer:-  C

Reason: The getElementsByTagName() method returns a collection of all elements in the document with the specified tag name, as a NodeList object. The method getElementsbyTagName() can be used to get a particular value using the tagged name associated with the document.

...