Merge branch 'new_branch_6'

This commit is contained in:
Nathalia Sardou 2022-11-02 00:46:20 -03:00
commit 91167a9025

View File

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