provides the functionality for many common web application tasks, such as iterating over a collection of objects and executing SQL statements. * code example
Example: javascript loop
let array = ['Item 1', 'Item 2', 'Item 3'];
array.forEach(item => {
console.log(item); // Logs each 'Item #'
});