challenge-algorithms-v2.0-n.../02-triangleArea/index.js
2022-10-29 17:26:12 -03:00

5 lines
114 B
JavaScript

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