Merge branch 'new_branch_2'

This commit is contained in:
Nathalia Sardou 2022-11-02 00:35:50 -03:00
commit 4e202403db

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;
}