解释此JavaScript代码1/strong>
难度: strong> basico mark>
console.log(Math.hypot(3, 4))
- 和。是你的0
- b。
5
- c。
hypot is not a function
- D.
Ninguna de las anteriores
kude5是在JavaScript中求解Pitena定理的一种方式。 他所做的是两个参数,然后添加它们然后取出他的正方形根。 我们可以使用其他Mâ©a all:
respuesta :
5
进行相同
const pitagoras = (a, b) => {
return Math.sqrt(a ** 2 + b ** 2)
}
console.log(pitagoras(3,4)) // 5