triangleArea atualizado

This commit is contained in:
Nathalia Sardou 2022-10-29 23:44:30 -03:00
parent c05f6d6999
commit b9f537a561

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;
}