//Iterable objects are objects that can be iterated over with for loops
//Technically, iterables must implement the Symbol.iterator method.
for (const x of [1,2,3,4,5] {
// code block to be executed
}
const name = "W3Schools";
for (const x of name) {
// code block to be executed
}