feat(triangleArea): implementa function

This commit is contained in:
Cainã Milech 2022-10-28 17:27:08 -03:00
parent 043eb1c50e
commit 875ec1b8d7

View File

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