Array
String
Date
/** * Calls the supplied function on each of the elements in the array. * @param {Function} fx The function to call. * @param {Object} context The context object in which to call the function. Optional. */ Array.prototype.each = function Array$each(fx, context) { for (var i = 0; i < this.length; i++) { var r = fx.call(context, this[i], i, this); if (r != undefined) this[i] = r; } return this; }
each
Resources/Base