feat(trianglearea): made second challenge

This commit is contained in:
Gabriel Ferreira Lehmann 2022-10-29 22:34:34 -03:00
parent c6f6df9c59
commit ea443dcea3

View File

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