6 lines
116 B
JavaScript
6 lines
116 B
JavaScript
export function triangleArea(base, height) {
|
|
// your code here
|
|
let area = (base * height) / 2;
|
|
return area;
|
|
}
|