programming-examples/js/Math/The Pythagorean theorem.js

5 lines
144 B
JavaScript
Raw Normal View History

2019-11-15 12:59:38 +01:00
function pythagorean(sideA, sideB){
return Math.sqrt(Math.pow(sideA, 2) + Math.pow(sideB, 2));
}
console.log(pythagorean(4, 3));