forked from M3-Academy/challenge-algorithms-v2.0
feat(sum): Responde função 06
This commit is contained in:
parent
0de9bd577c
commit
d02c19c6c0
@ -1,4 +1,8 @@
|
||||
export function sum(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
let soma = 0;
|
||||
for( let index = 0; index < values.length; index += 1 ) {
|
||||
soma = soma + values [ index ] ;
|
||||
}
|
||||
return soma;
|
||||
}
|
Loading…
Reference in New Issue
Block a user