feat: Algoritmo 02-triangleArea - finalizado

This commit is contained in:
José Carlos Lins 2022-10-27 19:54:36 -03:00
parent 9770e75d3e
commit 5923dc23db

View File

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