forked from M3-Academy/challenge-algorithms-v2.0
Triangulo area esta completa
This commit is contained in:
parent
2f44e8fb12
commit
a9dc6795ea
@ -1,3 +1,10 @@
|
||||
export function triangleArea(base, height) {
|
||||
// your code here
|
||||
}
|
||||
|
||||
return base * height / 2
|
||||
}
|
||||
|
||||
// Resultados esperados
|
||||
console.log(triangleArea(3, 5), 7.5) // 7.5
|
||||
console.log(triangleArea(5, 5), 12.5) // 12.5
|
||||
console.log(triangleArea(2, 5), 5) // 5
|
Loading…
Reference in New Issue
Block a user