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

4 lines
96 B
JavaScript
Raw Permalink Normal View History

export function triangleArea(base, height) {
// your code here
2022-11-01 01:35:35 +00:00
return base * height / 2;
}