JAVASCRIPT:
for each (var item in [1, 2, 3]) alert(item);JavaScript 1.6 added the Array.forEach method:
JAVASCRIPT:
[1, 2, 3].forEach(function(item) { alert(item) });
JavaScript 1.7 added array comprehensions for array initialization:
JAVASCRIPT:
var squares = [item * item for each (item in [1, 2, 3])];
I just realized I can (ab)use comprehensions to iterate arrays with Perl-like syntax by throwing away the result:
JAVASCRIPT:
[alert(item) for each (item in [1, 2, 3])];
I can iterate object properties the same way:
JAVASCRIPT:
[alert(name + “=” + obj[name]) for (name in obj)];
Edward Lee points out how to use Iterators:
JAVASCRIPT:
[alert(key + “=” + val) for ([key, val] in Iterator({a:1,b:2,c:3}))]
