JavaScript MathLast Updated : 17 Mar 2025 The JavaScript math object provides several constants and methods to perform mathematical operation. Unlike date object, it doesn't have constructors. JavaScript Math MethodsLet's see the list of JavaScript Math methods with description.
Math.sqrt(n)The JavaScript math.sqrt(n) method returns the square root of the given number. Output: Square Root of 17 is: Math.random()The JavaScript math.random() method returns the random number between 0 to 1. Output: Random Number is: Math.pow(m,n)The JavaScript math.pow(m,n) method returns the m to the power of n that is mn. Output: 3 to the power of 4 is: Math.floor(n)The JavaScript math.floor(n) method returns the lowest integer for the given number. For example 3 for 3.7, 5 for 5.9 etc. Output: Floor of 4.6 is: Math.ceil(n)The JavaScript math.ceil(n) method returns the largest integer for the given number. For example 4 for 3.7, 6 for 5.9 etc. Output: Ceil of 4.6 is: Math.round(n)The JavaScript math.round(n) method returns the rounded integer nearest for the given number. If fractional part is equal or greater than 0.5, it goes to upper value 1 otherwise lower value 0. For example 4 for 3.7, 3 for 3.3, 6 for 5.9 etc. Output: Round of 4.3 is: Round of 4.7 is: Math.abs(n)The JavaScript math.abs(n) method returns the absolute value for the given number. For example 4 for -4, 6.6 for -6.6 etc. Output: Absolute value of -4 is: Next TopicJavaScript Number |
We request you to subscribe our newsletter for upcoming updates.

We deliver comprehensive tutorials, interview question-answers, MCQs, study materials on leading programming languages and web technologies like Data Science, MEAN/MERN full stack development, Python, Java, C++, C, HTML, React, Angular, PHP and much more to support your learning and career growth.
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India