challenge-algorithms-v2.0-e.../02-triangleArea/index.js

4 lines
95 B
JavaScript

export function triangleArea(base, height) {
// your code here
return (base * height)/2
}