Entrega do Desafio #1

Merged
anacarolinaduartecavalcante merged 12 commits from feature/10-longestWords into master 2022-10-28 12:14:06 +00:00
Showing only changes of commit ae920dca29 - Show all commits

View File

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