JavaScript – location.port Property
The location.port property returns the port number 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.
The Math.acosh() method returns the hyperbolic arccosine of a number. If the parameter is less than 1 or not a number, the method returns NaN.
The Math.asin() method returns the arcsine (in radians) of a number. The Math.asin() method expects a parameter in the range -1 to 1.
The Math.asinh() method returns the hyperbolic arcsine of a number.
The Math.atan() method returns the arctangent of a number as a value between -PI/2 and PI/2 radians.
The Math.atan2() method returns the arctangent of the quotient of its arguments, as a numeric value between PI and -PI radians.
The Math.atanh() method returns the hyperbolic arctangent of a number. The Math.atanh() method expects a parameter in the range -1 to 1.
The Math.ceil() method returns a number rounded up to the nearest integer.
The Math.clz32() method returns the number of leading zeros in a 32-bit binary number.
The Math.cos() method returns the cosine of a number (entered in radians). The returned number will be between -1 and 1.
The Math.E property returns Euler’s number, which is approximately 2.71828.
The Math.exp() method returns the value of E squared, where E is Euler’s number and x is the parameter passed to it.