Quick actions

cmd+k|ctrl+k

Navigation

Languages

Loop

Snippet info

Language

JavaScript

Visibility

public

Author

muhammad-nur-ichsan

Created

2020-02-11T23:44:21Z

Updated

2020-02-11T23:59:31Z

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

// const myArray = ["Harry", "Ron", "Hermione", "Tom"];
 
// for(let i = 0; i < myArray.length; i++) {
//     console.log(myArray[i]);
// }

let myArray = ["Harry", "Ron", "Hermione", "Tom"];
 
for(const arrayItem of myArray) {
    console.log(arrayItem)
}
INFO