JavaScript – JSON.parse() Method
The JSON.parse() method parses a string written in JSON format and returns a JavaScript object.
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.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 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.exp() method returns the value of E squared, where E is Euler’s number and x is the parameter passed to it.
The Math.exp() method returns the value of E squared minus 1, where E is Euler’s number and x is the parameter passed to it.