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

4 lines
95 B
JavaScript
Raw Permalink Normal View History

export function triangleArea(base, height) {
// your code here
2022-10-28 14:42:49 +00:00
return base * height / 2
}