Javascript ES6 - For each loop
Loop over all elements in list.
Loop over all elements in list.
Each of the elements of the list is iterated. The list object needs to be iterable, for example an array, string or Set.
for(let elem of {{list}}) {
{{body}}
}