InterviewSolution
| 1. |
What Is The Name Of The Object That Refers To The Application Used To View A Web Page? |
|
Answer»
The object returned by the document.getElementsByTagName() method is an array. False, The object returned by the document.getElementsByTagName() method is an “HTMLCollection”. This is an array-like object that has a “length” PROPERTY, can be ENUMERATED, but is not an actual JavaScript array. The “navigator” object The object returned by the document.getElementsByTagName() method is an array. False, The object returned by the document.getElementsByTagName() method is an “HTMLCollection”. This is an array-like object that has a “length” property, can be enumerated, but is not an actual JavaScript array. |
|