feat: resolve funcão triangleArea

This commit is contained in:
José Gregorio Mata Rodríguez 2022-10-29 00:37:19 -02:00
parent 2dfd633655
commit e7bb1a6694

View File

@ -1,3 +1,9 @@
export function triangleArea(base, height) { export function triangleArea(base, height) {
// your code here // your code here
if ((base > 0) && (height > 0)) {
let area = (base * height) / 2;
return area;
}
else
return console.log('Base e altura devem ser maior a 0')
} }