From 68d01e662a11445f11fe707a1a7216f410fd0c7f Mon Sep 17 00:00:00 2001 From: Johan Galeano Date: Mon, 17 Aug 2020 14:03:56 -0500 Subject: [PATCH] challenge-javascript-01 --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 858a8e8..b8dc6c9 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,5 @@ const triangleArea = (base, height) => { - + return (base * height) / 2 }; module.exports = triangleArea; \ No newline at end of file