Short hand version for 'each' method of a sequence.

Enumerable.each([1, 2, 3], function(x) {
    // x[0] = 1
    // x[1] = 2
    // x[2] = 3
});