development #11

Merged
ednabarboza merged 20 commits from development into master 2022-10-29 02:59:32 +00:00
Showing only changes of commit b24986f9ee - Show all commits

View File

@ -1,4 +1,9 @@
export function sum(values) {
// implementar logica aqui
let inicio = 0
for(let i=0; i< values.length; i++){
inicio = inicio + values[i]
}
return inicio
}