- or download this
$list->foreach( sub {
my ($element,$index) = @_;
print "$index $element\n";
});
- or download this
list.each_with_index { |element,index|
print "#{index} #{element}\n"
};
- or download this
array.forEach(function(element,index) {
document.write(index+" "+element+"\n"); // depending on the host
});