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

5 lines
113 B
JavaScript

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