develop #11

Merged
HenriqueSantosSantana merged 20 commits from develop into master 2022-10-28 01:03:41 +00:00
Showing only changes of commit 157c511dd7 - Show all commits

View File

@ -1,3 +1,6 @@
export function triangleArea(base, height) {
export function triangleArea(base, height) {
// your code here
}
if (!base || !height) return 0;
return (base * height) / 2;
}