Merge pull request 'feat(triangleArea): Implementa função triangleArea' (#2) from feature/triangleArea into development

Reviewed-on: #2
This commit is contained in:
Daniel_Moliari_Barbosa 2022-10-28 17:48:11 +00:00
commit d4b89990ba

View File

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