feat: criação da resposta do 02-triangleArea

This commit is contained in:
Matheus Mariosa 2022-11-02 11:40:44 -03:00
parent eda78d854b
commit 924f2839fe

View File

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