JavaScript Math Functions
The math function helps us to perform mathematical operations on numbers.
Hello Guys, Welcome to Coding Torque! In this blog, I am going to share 9 commonly used JavaScript Functions. Almost 98% of websites in the world use JavaScript. Let's get started 🚀.
1. Math.random(): This method returns a random number between 0(inclusive) and 1(Exclusive).
2. Math.pow(): This Method takes two parameters like Math.pow(x,y) and returns a value of x to the power y.
3. Math.sqrt(): This method returns the square root of a given number.
4. Math.floor(): This method returns a value of a given number down to its nearest number.
5. Math.ceil(): This method returns a value of a given number up to its nearest number.
6. Math.trunc(): It returns only the integer part of the given number by removing fractional units.
7. Math.abs(): This method returns the absolute value i.e Positive Value of a given number.
8. Math.min(): This method returns the lowest value from a provided list of numeric values.
9. Math.max(): This method returns the highest value from a provided list of numeric values.