Math.abs( x )

Math.abs( x )

下面是参数的详细信息:

  •     x : 一个数字

返回值:

  • 返回一个数字的绝对值
    <html>
    <head>
    <title>JavaScript Math abs() Method</title>
    </head>
    <body>
    <script type="text/javascript">
     
    var value = Math.abs(-1);
    document.write("First Test Value : " + value ); 
      
    var value = Math.abs(null);
    document.write("<br />Second Test Value : " + value ); 
     
    var value = Math.abs(20);
    document.write("<br />Third Test Value : " + value ); 
     
    var value = Math.abs("string");
    document.write("<br />Fourth Test Value : " + value ); 
    </script>
    </body>
    </html>
    
    这将产生以下结果:
    
    	
    First Test Value : 1
    Second Test Value : 0
    Third Test Value : 20
    Fourth Test Value : NaN 
    

     

posted @ 2018-04-18 13:59  码农编程进阶笔记  阅读(172)  评论(0编辑  收藏  举报
返回顶部 有事您Q我