Returns the name of the browser.
Returns the name of the browser. The HTML5 specification also allows any browser to return "Netscape" here, for compatibility reasons.
MDN
Returns the version of the browser as a string.
Returns the version of the browser as a string. It may be either a plain version number, like "5.0", or a version number followed by more detailed information. The HTML5 specification also allows any browser to return "4.0" here, for compatibility reasons.
MDN
Returns a DOMString representing the preferred language of the user, usually the language of the browser UI.
Returns a DOMString representing the preferred language of the user, usually the language of the browser UI. The null value is returned when this is unknown.
MDN
Returns the online status of the browser.
Returns the online status of the browser. The property returns a boolean value, with true for being online and false for being offline. The property sends updates whenever the browser's ability to connect to the network changes. The update occurs when the user follows links or when a script requests a remote page. For example, the property should return false when users click links soon after they lose internet connection.
MDN
Returns a string representing the platform of the browser.
Returns a string representing the platform of the browser.
MDN
Returns the user agent string for the current browser.
Returns the user agent string for the current browser.
MDN
The WorkerNavigator interface represents a subset of the Navigator interface allowed to be accessed from a Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.navigator property obtained by calling window.self.navigator
MDN