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 Location Object Properties and Methods

List of JavaScript Window Location Object Properties and Methods

Window location.assign() in JavaScript
The assign() method is used for loading a new document. It is similar to replace() method.
Window location.reload() in JavaScript
The reload() method is used for reloading the current document i.e, page. It does the same job as reload button in the browser.
Window location.replace() in JavaScript
The replace() method is used for replacing the current document with a new one. It is similar to the assign().
Window location.hash in JavaScript
The location.hash property is used to either set or returns the anchor part of a URL. It also includes the hash sign (#). Do not include a hash (#)  when we want to set the anchor part in location.hash .
Window location.host in JavaScript
The location.host property is used to return the host IP address or domain and port of a URL. We can also set it in order to navigate the same URL but with a different host and port.
Window location.hostname in JavaScript
The location.hostname property is used to return the host IP adress or domain of a URL. We can also set it in order to navigate the same URL but with a different hostname.
Window location.href in JavaScript
The location.href property is used to either set or return the entire URL of the current page.
Window location.origin in JavaScript
The location.origin property is used to return the protocol, hostname, and port number of a URL and it is a read-only property.
Window location.pathname in JavaScript
The location.pathname property is used to either set or return the pathname of a URL i.e, page.
Window location.port in JavaScript
The location.port property is used to either set or return the port number of a URL. If the default port is 80(http) or 443(https), then most browsers will return an empty string.
Window location.protocol in JavaScript
The location.protocol property is used to either set or return the protocol of the current URL. It also includes the colon (:). It is a standard that is used to specify how data are transmitted between computers.
Window location.search in JavaScript
The search property is used to return the querystring part of a URL. It also includes the question mark (?). We can also use it to set the querystring.