Quick actions

cmd+k|ctrl+k

Navigation

Languages

123 - Loop

Snippet info

Language

JavaScript

Visibility

public

Author

sosiksodik99

Created

2020-08-21T02:27:34Z

Updated

2020-08-21T02:30:14Z

for(let i = 0; i < 6; i++) {
    console.log(i);
}

/* output
0
1
2
3
4
*/

const myArray = ["Harry", "Ron", "Hermione", "Tom"];

for(let i = 0; i < myArray.length; i++) {
    console.log(myArray[i]);
}

/* output
Harry
Ron
Hermione
Tom
*/
INFO