InterviewSolution
Saved Bookmarks
| 1. |
What does the NamedNodeMap object represent in the HTML DOM?(a) Unordered collection of elements(b) Unordered collection of attributes(c) Unordered collection of nodes(d) Unordered collection of arrays |
|
Answer» Correct answer is (d) Unordered collection of arrays For explanation: In the HTML DOM, the NamedNodeMap object represents an unordered collection of an elements attribute nodes. The nodes in the NamedNodeMap can be accessed through their name. |
|