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

5 lines
112 B
JavaScript
Raw Normal View History

2022-10-28 12:52:27 +00:00
export function triangleArea(base, height) {
// your code here
2022-10-28 12:52:27 +00:00
let area = base * height / 2
return area
}