JavaScript – history.back() Method
The history.back() method loads the previous page in the browser history list. The history.back() method only works if a previous page exists.
The history.back() method loads the previous page in the browser history list. The history.back() method only works if a previous page exists.
The history.forward() method loads the next page in the browser history list. The history.forward() method only works if a next page exists.
The history.go() method loads a specified page in the browser history list. The history.go() method only works if the specified page exists.
The history.length property returns the number of URLs in the history list of the current browser window.
The JSON.parse() method parses a string written in JSON format and returns a JavaScript object.
The JSON.stringify() method converts JavaScript objects into strings.
The location.assign() method loads a new document in the current browser window.
The location.hash property sets or returns the anchor part of a URL, including the # sign.
The location.host property returns the host (IP address or domain) and port of a URL.
The location.hostname property returns the host (IP address or domain) of a URL.
The location.href property sets or returns the entire URL of the current page.
The location.origin property returns the protocol, hostname, and port number of a URL.
The location.pathname property returns the pathname of a URL.
The location.protocol property returns the protocol of the current URL, including the colon (:).
The location.reload() method reloads the current document, just as if the browser reload button was clicked.
The location.replace() method replaces the current document in the browser with a new one.
The location.search property returns the querystring part of a URL, including the question mark (?).
The Math.acos() method returns the arccosine (in radians) of a number. The Math.acos() method expects a parameter in the range -1 to 1.