Merge pull request 'feat(challenge): desafio area do triangulo finalizado' (#2) from feature/area-do-triangulo into master

Reviewed-on: #2
This commit is contained in:
Thiago Bronisio Damascena 2022-10-29 02:37:52 +00:00
commit 5646bcee3f

View File

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