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

5 lines
97 B
JavaScript
Raw Permalink Normal View History

2022-10-28 19:08:31 +00:00
export function triangleArea(base, height) {
// your code here
2022-10-28 19:08:31 +00:00
return (base * height) / 2;
}