Merge pull request 'feat: Resolvido questao triangleArea' (#2) from feature/desafiodois into master

Reviewed-on: #2
This commit is contained in:
ThiagoDutraSampaioLeite 2022-10-28 19:10:06 +00:00
commit 3eba14d89e

View File

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