develop #11

Merged
nicolasrosadeoliveira merged 20 commits from develop into master 2022-10-29 19:56:35 +00:00
Showing only changes of commit e34c4c6cb3 - Show all commits

View File

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