• 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 
      
  • 相关阅读:
    vpp编写plugin
    vrf 命令
    vxlan + 多个vrf
    dpdk helloworld
    Go函数高级
    Go_defer
    Go递归函数
    Go作用域
    Go函数
    Go字符串
  • 原文地址:https://www.cnblogs.com/lxwphp/p/8874430.html
Copyright © 2020-2023  润新知