4 lines
98 B
JavaScript
4 lines
98 B
JavaScript
export function triangleArea(base, height) {
|
|
// your code here
|
|
return ((base * height) / 2)
|
|
} |