--- title: Math.hypot() slug: Web/JavaScript/Reference/Global_Objects/Math/hypot translation_of: Web/JavaScript/Reference/Global_Objects/Math/hypot original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/hypot ---
La funció Math.hypot()
retorna la rel quadrada de la suma dels quadrats dels seus arguments, és a dir:
Math.hypot([valor1[, valor2[, ...]]])
valor1, valor2, ...
Com que que hypot()
és un mètode estàtic de Math
, sempre s'utilitza com a Math.hypot()
, en comptes de com a mètode d'una instància de Math
(Math
no és un constructor).
Si no es passa cap argument, el resultat és +0.
Si al menys un dels arguments no pot ser convertit a nombre el resultat és {{jsxref("Global_Objects/NaN", "NaN")}}.
Quan se li passa només un argument, Math.hypot()
retorna el mateix valor que retornaria Math.abs()
.
Math.hypot()
Math.hypot(3, 4); // 5 Math.hypot(3, 4, 5); // 7.0710678118654755 Math.hypot(); // 0 Math.hypot(NaN); // NaN Math.hypot(3, 4, 'foo'); // NaN, +'foo' => NaN Math.hypot(3, 4, '5'); // 7.0710678118654755, +'5' => 5 Math.hypot(-3); // 3, el mateix que Math.abs(-3)
Aquest mètode pot emular-se mitjançant la funció següent:
Math.hypot = Math.hypot || function() { var y = 0; var length = arguments.length; for (var i = 0; i < length; i++) { if (arguments[i] === Infinity || arguments[i] === -Infinity) { return Infinity; } y += arguments[i] * arguments[i]; } return Math.sqrt(y); };
Especificació | Estat | Comentaris |
---|---|---|
{{SpecName('ES6', '#sec-math.hypot', 'Math.hypot')}} | {{Spec2('ES6')}} | Definició inicial. |
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Suport bàsic | {{CompatChrome("38")}} | {{CompatGeckoDesktop("27")}} | {{CompatNo}} | {{CompatOpera("25")}} | {{CompatSafari("7.1")}} |
Característica | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Suport bàsic | {{CompatNo}} | {{CompatNo}} | {{CompatGeckoMobile("27")}} | {{CompatNo}} | {{CompatNo}} | 8 |