ES6 - Función Math.hypot (x1, x2, ...)

Devuelve la raíz cuadrada de la suma de los argumentos.

Sintaxis

Math.hypot( x1,x2.. ) ;

Parámetro

  • X1 y x2 .. - representa números

Valor devuelto

Devuelve la raíz cuadrada de la suma de todos los números pasados ​​un argumento

Ejemplo

console.log("---Math.hypot()---") 
console.log("Math.hypot(3,4) : "+Math.hypot(3,4)) 
console.log("Math.hypot(2,3,4) : "+Math.hypot(2,3,4))

Salida

---Math.hypot()--- 
Math.hypot(3,4) : 5 
Math.hypot(2,3,4) : 5.385164807134504