feature/algoritmos #1

Merged
LeonardoPereiraRocha merged 10 commits from feature/algoritmos into master 2022-11-02 20:24:57 +00:00
Showing only changes of commit 2f5d5c9c03 - Show all commits

View File

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