For Command

The For command is used for looping over all items in a list or map.

var list = ["a","b","c"];
for (item : list){
    log(item);
};