JavaScript Llop Array

const a = ["a", "b", "c"];
for (const element of a) { // You can use `let` instead of `const` if you like
    console.log(element);
}
// a
// b
// c
 Run code snippet
Wandering Walrus