feat: Implementa Desafio 2.2

This commit is contained in:
Sabrina Miranda 2022-10-28 14:12:36 -03:00
parent ceed55910a
commit c10bee305d

View File

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