From 4f9d07e919af2dd9add29c71575235ee6ff993bd Mon Sep 17 00:00:00 2001 From: Victor Souza Date: Mon, 31 Oct 2022 17:33:55 -0300 Subject: [PATCH] feat(sum):adicionando funcionalidade --- 06-sum/index.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/06-sum/index.js b/06-sum/index.js index ebc2ee1..89917c8 100644 --- a/06-sum/index.js +++ b/06-sum/index.js @@ -1,4 +1,11 @@ export function sum(values) { - // implementar logica aqui - + //armazenar os números em uma variavel + // percorrer todo o array de número + // somar todos números contidos no array + + let sum = 0 + for(let i = 0; i < values.length; i++) { + sum += values[i] + } + return sum } \ No newline at end of file