Esta tradução está incompleta. Ajude atraduzir este artigo.
Sumário
A função Math.abs(x)
retorna o valor absoluto de um número "x".
Sintaxe
var abs = Math.abs(x);
Parâmetros
-
x
- Um número.
Descrição.
Por abs
ser um método estático de Math
, você sempre o usará como Math.abs()
.
Exemplos
Exemplo: Comportamento de Math.abs()
Passando um string não-numérica ou variável indefinida/vazia retorna NaN
. Passando null retorna 0.
Math.abs('-1'); // 1 Math.abs(-2); // 2 Math.abs(null); // 0 Math.abs("string"); // NaN Math.abs(); // NaN
Especificações
Specification | Status | Comment |
---|---|---|
ECMAScript 1st Edition. Implemented in JavaScript 1.0 | Standard | Initial definition. |
ECMAScript 5.1 (ECMA-262) The definition of 'Math.abs' in that specification. |
Standard | |
ECMAScript 6 (ECMA-262) The definition of 'Math.abs' in that specification. |
Release Candidate |
Compatibilidade de Navegadores
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Veja Também
- O objeto
Math
pertence a. Math.ceil()
Math.floor()
Math.round()