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

4 lines
98 B
JavaScript
Raw Normal View History

export function triangleArea(base, height) {
// your code here
2022-10-30 11:33:19 +00:00
return ((base * height) / 2)
}