InterviewSolution
Saved Bookmarks
| 1. |
Which identifier is used to represent a web browser window or frame?(a) frames(b) window(c) location(d) frame |
|
Answer» The correct answer is (b) window For explanation I would say: The window object represents a web browser window or frame, and you can refer to it with the identifier window. Global variables are properties of the window object and Global functions are methods of the window object. |
|