forked from Jonathancollinet/suite01
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex07.js
37 lines (27 loc) · 869 Bytes
/
ex07.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
Ecrire une fonction "boostedAddition",
qui prend un paramètre un tableau de nombre,
et qui retourne un nombre étant l'addition de tous les nombre du tableau
*/
/* Test 1
Appel à la fonction "boostedAddition",
prenant en paramètre le tableau [4, 5, 6],
et nous attendons comme résultat 15;
*/
boostedAddition([4, 5, 6]);
/* Test 1
Appel à la fonction "boostedAddition",
prenant en paramètre le tableau [4, 4, 6, 8, 10, 12],
et nous attendons comme résultat 44;
*/
boostedAddition([4, 4, 6, 8, 10, 12]);
// écrire votre code sous ce commentaire
function boostedAddition (table) {
let sum = 0;
for(i = 0; i < table.length; i++) {
sum = sum+table[i];
}
return sum;
}
console.log(boostedAddition([4, 5, 6]));
console.log(boostedAddition([4, 4, 6, 8, 10, 12]));