9.
Which of the following statements is true about the global object in JavaScript?
The global object is an object that always exists in the global scope.
The global object is accessible only within specific functions or objects.
The global object is used to store local variables.
The global object provides access to browser-specific functionalities.
Correct: A
The global object is automatically created in every JavaScript program. It represents the global scope and provides a context for all variables and functions defined in the program.