challenge-algorithms-v2.0-e.../06-sum/index.js

9 lines
158 B
JavaScript

export function sum(values) {
let inicio = 0
for(let i=0; i< values.length; i++){
inicio = inicio + values[i]
}
return inicio
}