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

5 lines
115 B
JavaScript
Raw Normal View History

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