Merge branch 'feature/trianglearea' into development

This commit is contained in:
Marcello Rodrigues Martins 2022-10-29 16:21:09 -03:00
commit cf3176c2f3

View File

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