feature #1

Merged
wellingtonCarlos merged 11 commits from feature into master 2022-11-02 18:10:07 +00:00
Showing only changes of commit ba1669b1ec - Show all commits

View File

@ -1,4 +1,11 @@
export function sum(values) {
// implementar logica aqui
if (values.length) {
return values.reduce(function (soma, i) {
return soma + i
})
}
return 0
}