From c7ec50ec8b4906db5483a211e5c2734c1c2abed1 Mon Sep 17 00:00:00 2001 From: Ramon Dias Ferreira Date: Fri, 28 Oct 2022 14:08:31 -0300 Subject: [PATCH] =?UTF-8?q?feat(triangleArea):=20Retono=20da=20fun=C3=A7?= =?UTF-8?q?=C3=A3o,=20funcional=20em=20todos=20os=20testes.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 02-triangleArea/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/02-triangleArea/index.js b/02-triangleArea/index.js index 7628fcd..53067fe 100644 --- a/02-triangleArea/index.js +++ b/02-triangleArea/index.js @@ -1,3 +1,4 @@ export function triangleArea(base, height) { // your code here + return base * height /2 ; } \ No newline at end of file