Merge pull request 'feat(trianfleArea): funcao feita' (#2) from feature/triangleArea into development

Reviewed-on: #2
This commit is contained in:
Nicolly Vieira Santos Costa 2022-10-28 17:48:57 +00:00
commit b043539824

View File

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