The math object part 2

Math Object Methods



The Math object contains a number of methods that are used for calculations:
For example, the following will calculate the square root of a number.
var number = Math.sqrt(4);
document.write(number);
//Outputs 2
Try It Yourself

To get a random number between 1-10, use Math.random(), which gives you a number between 0-1. Then multiply the number by 10, and then take Math.ceil() from it: Math.ceil(Math.random() * 10).

Comments

Popular posts from this blog

String Operators

Introducing object part 3

Associative Arrays part 2