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

4 lines
97 B
JavaScript
Raw Normal View History

export function triangleArea(base, height) {
// your code here
return base * height / 2 ;
}