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

9 lines
158 B
JavaScript
Raw Normal View History

export function sum(values) {
2022-10-28 12:05:51 +00:00
let inicio = 0
for(let i=0; i< values.length; i++){
inicio = inicio + values[i]
}
return inicio
}