Javascript - Browser
> (World Wide) Web - (W3|WWW) > Javascript (Js|ECMAScript) > Javascript - Browser
Table of Contents
1 - About
The browser in Javascript.
The browser implements extra javascript object to be able to interact with it, such as:
- The window object of represents a window containing a DOM document; the document property points to the DOM document loaded in that window. window is the global scope in the browser.
- The console
- …
The whole set of function that a browser implements is known as the WebApi
2 - Function List
Function that provided by the browser, not by the JS engine itself.
- The
window.alert(..)
Advertising