feature/algoritmos #1

Merged
WellingtonDuarteSantos merged 10 commits from feature/algoritmos into master 2022-11-01 12:40:20 +00:00
Showing only changes of commit dd3cc81114 - Show all commits

View File

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