feat(trianfleArea): funcao feita

This commit is contained in:
Nicolly Vieira Santos Costa 2022-10-28 14:47:01 -03:00
parent 45f1dbf6f5
commit c132bbdf80

View File

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