feat: Resolve o exercício 06-sum
This commit is contained in:
parent
0771958d28
commit
c29171035f
@ -1,4 +1,8 @@
|
|||||||
export function sum(values) {
|
export function sum(values) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
let add = 0
|
||||||
|
for (let p = 0; p < values.length; p++) {
|
||||||
|
add += values[p]
|
||||||
|
}
|
||||||
|
return add
|
||||||
}
|
}
|
@ -44,6 +44,6 @@ describe("sum", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it("Dever retornar -40 quando passamos o array [-2, -7, -31]", () => {
|
it("Dever retornar -40 quando passamos o array [-2, -7, -31]", () => {
|
||||||
expect(sum([-2, -7, -31])).toBe(-51);
|
expect(sum([-2, -7, -31])).toBe(-40);
|
||||||
})
|
})
|
||||||
});
|
});
|
Loading…
Reference in New Issue
Block a user