challenge-algorithms-v2.0-m.../02-triangleArea/index.js

5 lines
113 B
JavaScript
Raw Normal View History

export function triangleArea(base, height) {
// your code here
let soma = base * height / 2
return soma
}