DEV Community

Discussion on: What is the simplest code to explain a loop?

Collapse
 
ibraback profile image
Ala Douagi
for (const page of book) {
  console.log(page);
}