feat(challenge): desafio area do triangulo finalizado #2

Merged
Thiago.bronisio merged 1 commits from feature/area-do-triangulo into master 2022-10-29 02:37:53 +00:00
Showing only changes of commit e673ad7c03 - Show all commits

View File

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