Javascript

JavaScript Intro

JavaScript Intro Quiz

JavaScript Intro Exercise

JavaScript Basic

JavaScript Basic Quiz

JavaScript Basic Exercise

JavaScript Advance

JavaScript Advance Quiz

JavaScript Advance Exercise

JavaScript ES6

JavaScript ES6 Quiz

JavaScript ES6 Exercise

JavaScript Array Methods and Properties

JavaScript String Methods and Properties

JavaScript Number Methods and Properties

JavaScript Math Properties and Methods

JavaScript Date Methods and Properties

JavaScript Global Methods and Properties

JavaScript RegExp Properties and Methods

JavaScript Class Methods and Keywords

JavaScript Errors, JSON and Booleans

JavaScript Statements

JavaScript Window History Object Properties and Methods

JavaScript Window Location Object Properties and Methods

JavaScript Window Screen Object Properties

JavaScript Window Navigator Object Properties and Methods

JavaScript Window Object Properties and Methods

JavaScript Console Object Methods

JavaScript Geolocation and Storage APIs

JavaScript CSSStyleDeclaration Object Methods and Properties

HTML DOM Documents Object Properties and Methods

DOM HTMLCollection Properties and Methods

HTML DOM Attributes Properties and Methods

HTML DOM Elements Properties and Methods

HTML DOM Style Object Properties

HTML DOM AnimationEvent Properties and Methods

HTML DOM ClipboardEvent Properties and Methods

HTML DOM DragEvent Properties and Methods

HTML DOM FocusEvent Properties and Methods

HTML DOM HashChangeEvent Properties and Methods

HTML DOM InputEvent Properties and Methods

HTML DOM KeyboardEvent Properties and Methods

HTML DOM MouseEvent Properties and Methods

HTML DOM PageTransitionEvent Properties and Methods

HTML DOM ProgressEvent Properties and Methods

HTML DOM StorageEvent Properties and Methods

HTML DOM TransitionEvent Properties and Methods

HTML DOM WheelEvent Properties and Methods

HTML DOM UiEvent Properties and Methods

HTML DOM TouchEvent Properties and Methods

The Event Object Properties and Methods

JavaScript Window Navigator Object Properties and Methods

List of JavaScript Window Navigator Object Properties and Methods

Window navigator.javaEnabled() in JavaScript
The javaEnabled() method is used to return a Boolean value that is used to specify whether the browser has Java enabled or not.
Window navigator.appCodeName in JavaScript
The appCodeName property is used to return the browser code name. It is a read-only property and it returns Mozilla on all browsers because of compatibility reasons.
Window navigator.appName in JavaScript
The appName property is used to return the browser name. It is a read-only property and it returns Netscape on all browsers because of compatibility reasons.
Window navigator.appVersion in JavaScript
The appVersion property is used to return the browser version. It is a read-only property.
Window navigator.cookieEnabled in JavaScript
The cookieEnabled property is used to return true if cookies are enabled in the browser else it will return false.
Window navigator.geolocation in JavaScript
The geolocation property is used to return a Geolocation object which is used to locate the user position. It is a read-only property and is available only in secure contexts (HTTPS).
Window navigator.language in JavaScript
The language property is used to return the browser language. It is a read-only property.
Window navigator.onLine in JavaScript
The onLine property is used to return true if the browser is online else it will return false. It is a read-only property.
Window navigator.platform in JavaScript
The platform property is used to return for which platform the browser is compiled. It is a read-only property.
Window navigator.product in JavaScript
The product property is used for returning the browser engine which is basically its product name. It is a read-only property.
Window navigator.userAgent in JavaScript
The userAgent property is used to return the user-agent header sent by the browser to the server. It is a read-only property.