SQL PHP HTML ASP JavaScript articles and free scripts to download
 

Math function

JavaScript has some good collection of Math functions to handle various requirements. These functions we can inside our script based on the logic required. We can check a variable if it is a number or we can format a number or we can rounded off a number by using these Math function and can do much more than this. Here are some tutorials on handling math function.

Simple addition

We can add to numbers and display the result like this

var x=2+5
document.write(x);

Subtraction

var x =4-2
document.write(x);

Multiplication

var x=4*9
document.write(x);

Division

var x=12/7;
document.write(x);

To get the reminder of this division we have to use modulus.


Post Comment This is for short comments only. Use the forum for more discussions.
Name
Email( not to be displayed)Privacy Policy
1+2=This is to prevent automatic submission by spammers. Please enter the result of the sum as asked


Join Our Email List
Email:  
For Email Newsletters you can trust
Math functions