desafio 02 concluido

This commit is contained in:
Douglas Vinicius Nobrega 2022-10-27 17:10:00 -03:00
parent bbb3d183f2
commit 131d096057

View File

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