feat(triangleArea): Responde função 02

This commit is contained in:
Affonso Kopmann 2022-10-28 16:33:21 -03:00
parent 171a7568c7
commit 7115bcd5b5

View File

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