当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript abs()方法
The abs() method returns the absolute value of a number.
abs()方法可返回一个数的绝对值
Math.abs(x) |
Parameter 参数 | Description 描述 |
---|---|
x | Required. Must be a numeric value 必选。必须为数字值 |
In this example get the absolute values of positive and negative numbers:
举例中我们分别获得了正数和负数的绝对值:
<script type="text/javascript"> document.write(Math.abs(7.25) + "<br />") </script> |
The output of the code above will be:
输出结果:
7.25 |
abs()
How to use abs() get the absolute values of numbers.
怎样使用abs()得到一个数的绝对值