For loops basic

Run Settings
LanguageJavaScript
Language Version
Run Command
const myArrays = ["Harry", "Ron", "Hermione", "Tom"]; for(let i = 0; i < myArrays.length; i++) { console.log(myArrays[i]); }
let myArray = ['Luke', 'Han', 'Chewbacca', 'Leia']; for(const arrayItem of myArray) { console.log(arrayItem) }
Editor Settings
Theme
Key bindings
Full width
Lines