1var colors=["red","blue","green"];
2for (let i = 0; i < colors.length; i++) {
3 console.log(colors[i]);
4}
1//for ... of statement
2
3const array1 = ['a', 'b', 'c'];
4
5for (const element of array1) {
6 console.log(element);
7}
8
9// expected output: "a"
10// expected output: "b"
11// expected output: "c"
12
1let panier = ['fraise', 'banane', 'poire'];
2
3for (const fruit of panier) {
4 // console.log(fruit);
5 console.log(panier.indexOf(fruit));
6}
1const array = ['hello', 'world', 'of', 'Corona'];
2
3for (const item of array) {
4 console.log(item);
5}
1for (let step = 0; step < 5; step++) {
2 // Runs 5 times, with values of step 0 through 4.
3 console.log('Walking east one step');
4}
5