InterviewSolution
Saved Bookmarks
| 1. |
Which is the object that defines methods that allow complete control over page content?(a) The client-side document object(b) The server-side document object(c) Both client-side and server-side document object(d) Web document objectThis question was posed to me during an online exam.The question is from JavaScript Subsets in chapter Classes and Modules in JavaScript of JavaScript |
|
Answer» RIGHT choice is (a) The client-side document OBJECT Explanation: A web page is divided into two object documents in which ONE is client-side document object and the other is server-side document object. The client-side document object defines methods that allow COMPLETE control over page content |
|