feat(sum): desenvolvimento da função
This commit is contained in:
parent
a7dff396b4
commit
ff22b86c98
@ -1,4 +1,9 @@
|
||||
export function sum(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
let total = 0;
|
||||
for (let i = 0; i < values.length; i++) {
|
||||
total += values[i]
|
||||
}
|
||||
return total
|
||||
/* return values.reduce((acumulador, valorAtual) => acumulador + valorAtual, 0) */
|
||||
}
|
Loading…
Reference in New Issue
Block a user