forked from M3-Academy/challenge-algorithms-v2.0
5 lines
97 B
JavaScript
5 lines
97 B
JavaScript
export function triangleArea(base, height) {
|
|
// your code here
|
|
return (base * height) / 2;
|
|
}
|