La fonction Math.abs()
retourne la valeur absolue d'un nombre, c'est-à-dire
Syntaxe
Math.abs(x);
Paramètres
x
- Un nombre.
Valeur absolue
La valeur absolue du nombre passé en argument.
Description
abs
est une méthode statique de l'objet Math
et doit toujours être utilisée avec la syntaxe Math.abs()
.
Exemples
Utiliser Math.abs()
Si la méthode est utilisée avec une chaîne de caractères non numérique, sans paramètre ou avec undefined
, la valeur retournée sera NaN
. Si elle est utilisée avec null
, la fonction renverra 0.
Math.abs('-1'); // 1 Math.abs(-2); // 2 Math.abs(null); // 0 Math.abs(''); // 0 Math.abs([]); // 0 Math.abs([2]); // 2 Math.abs([1,2]); // NaN Math.abs({}); // NaN Math.abs("string"); // NaN Math.abs(); // NaN
Spécifications
Spécification | État | Commentaires |
---|---|---|
ECMAScript 1st Edition (ECMA-262) | Standard | Définition initiale. Implémentée avec JavaScript 1.0. |
ECMAScript 5.1 (ECMA-262) La définition de 'Math.abs' dans cette spécification. |
Standard | |
ECMAScript 2015 (6th Edition, ECMA-262) La définition de 'Math.abs' dans cette spécification. |
Standard | |
ECMAScript 2017 Draft (ECMA-262) La définition de 'Math.abs' dans cette spécification. |
Projet |
Compatibilité des navigateurs
Fonctionnalité | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Support simple | (Oui) | (Oui) | (Oui) | (Oui) | (Oui) |
Fonctionnalité | Android | Chrome pour Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Support simple | (Oui) | (Oui) | (Oui) | (Oui) | (Oui) | (Oui) |