feat: Adiciona 02-triangleArea

This commit is contained in:
Izabela Balizardo 2022-10-29 18:19:59 -03:00
parent c87e88a314
commit 29af326134

View File

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