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