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

6 lines
96 B
JavaScript

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