The JavaScript math abs() method is used to get the absolute value of a number.
Syntax:
Math.abs(n)
Parameters
n: It represents the number whose absolute value has to be obtained.
Returns
The absolute value of a number
Example:
<!DOCTYPE html> <html> <body> <script> document.writeln(Math.abs(-345)); </script> </body> </html>