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

5 lines
119 B
JavaScript

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