development #11

Merged
SavioCarvalhoMoraes merged 20 commits from development into master 2022-10-30 18:40:05 +00:00
Showing only changes of commit 71b6572744 - Show all commits

View File

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