5 lines
96 B
JavaScript

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