feat(desafio02):desafio-completo

This commit is contained in:
Nicolas Oliveira 2022-10-28 09:52:27 -03:00
parent 2d53bf069b
commit e34c4c6cb3

View File

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