challenge-algorithms-v2.0-t.../02-triangleArea/index.js
2022-10-28 23:37:33 -03:00

4 lines
96 B
JavaScript

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