The JavaScript Math object allows you to perform mathematical tasks on numbers.
Math is not a constructor. All properties/methods of Math can be called by using Math as an object, without creating it.
The built-in Math object includes mathematical constants and functions. All the properties and methods of Math are static and can be called by using Math as an object without creating it.
var pi_value = Math.PI; var sine_value = Math.sin(30);
JavaScript provides mathematical constraints that can be accessed with Math Objects. There are 8 mathematical constraints that can be accessed with Math Object.