| title | ms.custom | ms.date | ms.prod | ms.reviewer | ms.suite | ms.technology | ms.tgt_pltfrm | ms.topic | f1_keywords | dev_langs | helpviewer_keywords | ms.assetid | caps.latest.revision | author | ms.author | manager | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Math.abs Function (JavaScript) | Microsoft Docs |
01/18/2017 |
windows-client-threshold |
|
language-reference |
|
|
|
9af4b5b8-de77-47bb-bb59-abdde371e4c3 |
18 |
mikejo5000 |
mikejo |
ghogen |
Returns the absolute value of a number (the value without regard to whether it is positive or negative). For example, the absolute value of -5 is the same as the absolute value of 5.
Math.abs(number)
The required number argument is a numeric expression for which the absolute value is needed.
The absolute value of the number argument.
The following example illustrates the use of the abs function.
var s;
var v1 = Math.abs(6);
var v2 = Math.abs(-6);
if (v1 == v2) {
document.write("Absolute values are the same.");
}
else {
document.write("Absolute values are different.");
}
// Output: Absolute values are the same.
[!INCLUDEjsv1]
Applies To: Math Object