Math对象为数学常量和函数提供属性和方法。与其他全局对象不同,Math不是构造函数。Math的所有属性和方法都是静态的,可以通过将Math作为对象来调用,而无需创建它。本文主要介绍JavaScript(JS) Math.abs( x ) 方法。

1、描述

此方法返回数字的绝对值。

2、语法

它的语法如下:

Math.abs( x ) 

3、参数

x:一个数字。

4、返回值

返回数字的绝对值。

5、使用示例

<html>  
   <head>
      <title>JavaScript Math abs() Method</title>
   </head>
   
   <body>   
      <script type = "text/javascript">
         var value = Math.abs(-1);
         document.write("-1 : " + value ); 
         
         var value = Math.abs(null);
         document.write("<br />null : " + value ); 
         
         var value = Math.abs(20);
         document.write("<br />20 : " + value ); 
         
         var value = Math.abs("string");
         document.write("<br />string : " + value ); 
      </script>   
   </body>
</html>

6、输出

-1 : 1
null : 0
20 : 20
string : NaN

推荐文档