介绍JavaScript中Math.abs()方法的使用
 这个方法返回一个数字的绝对值。
语法
Math.abs(x);
下面是参数的详细信息:
- x:一个数字
返回值:
- 返回一个数字的绝对值
例子:
<html>
<head>
<title>JavaScriptMathabs()Method</title>
</head>
<body>
<scripttype="text/javascript">
varvalue=Math.abs(-1);
document.write("FirstTestValue:"+value);
varvalue=Math.abs(null);
document.write("<br/>SecondTestValue:"+value);
varvalue=Math.abs(20);
document.write("<br/>ThirdTestValue:"+value);
varvalue=Math.abs("string");
document.write("<br/>FourthTestValue:"+value);
</script>
</body>
</html>
这将产生以下结果:
FirstTestValue:1 SecondTestValue:0 ThirdTestValue:20 FourthTestValue:NaN
