feat(02-triangleArea): Adiciona função

This commit is contained in:
Emerson Fully 2022-10-29 12:36:01 -03:00
parent 30e966ba4e
commit 2d10433ffc

View File

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