Merge branch 'feature/trianguleArea'

This commit is contained in:
Marcela Mathias 2022-11-02 16:09:08 -03:00
commit cc7bad1ea7

View File

@ -1,3 +1,4 @@
export function triangleArea(base, height) {
// your code here
}
export function triangleArea(base, height) {
const result = (base * height) / 2;
return result;
}