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

5 lines
119 B
JavaScript
Raw Normal View History

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