| JS Math |
|
The Math object allows you to perform common mathematical tasks. Math Object The Math object allows you to perform common mathematical tasks. The Math object includes several mathematical values and functions. You do not need to define the Math object before using it. How to use round()? <!--Created By phpguru.biz--> How to use max() to return the highest value of two specified numbers? <!--Created By phpguru.biz--> Mathematical Values JavaScript provides eight mathematical values (constants) that can be accessed from the Math object. These are: E, PI, square root of 2, square root of 1/2, natural log of 2, natural log of 10, base-2 log of E, and base-10 log of E. You may reference these values from your JavaScript like this: Math.E Math.LOG10E Mathematical Methods In addition to the mathematical values that can be accessed from the Math object there are also several functions (methods) available. Examples of functions (methods): The subsequent example uses the round() method of the Math object to round a number to the nearest integer: document.write(Math.round(4.7)); The code above will result in the following output: 5 The following example uses the random() method of the Math object to return a random number between 0 and 1: document.write(Math.random()); The code above can result in the following output: 0.3534388799698127 The subsequent example uses the floor() and random() methods of the Math object to return a random number between 0 and 10: document.write(Math.floor(Math.random()*11)); The code above can result in the following output: 6 Examples round() random() max() min() |
|
| Last Updated ( Wednesday, 19 March 2008 ) |