programming-examples/js/Math/The Pythagorean theorem.js
2019-11-15 12:59:38 +01:00

5 lines
144 B
JavaScript

function pythagorean(sideA, sideB){
return Math.sqrt(Math.pow(sideA, 2) + Math.pow(sideB, 2));
}
console.log(pythagorean(4, 3));