feat(triangleArea): Implementa função triangleArea #2

Merged
Daniel_Moliari_Barbosa merged 1 commits from feature/triangleArea into development 2022-10-28 17:48:12 +00:00
Showing only changes of commit 5cf92a84c1 - Show all commits

View File

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