.each()
Invokes the given function once for each item in the list.
Available in all modules.
Syntax Variants
list.each(callback)
list.each(callback, ctx)
_.each(list, callback)
_.each(list, callback, ctx)
Parameters
- list
- a list to iterate. Can be an array, a Minified list or any other array-like structure with length property.
- callback
- The callback
function(item, index)to invoke for each list element.- item
- The current list element.
- index
- The second the zero-based index of the current element.
- this
- The given context if not null. Otherwise the list. The callback's return value will be ignored.
- ctx (optional)
- a context to pass to the callback as 'this'. Only supported in UTIL module.
- (return value)
- the list
Description
Invokes the given function once for each item in the list. The function will be called with the item as first parameter and the zero-based index as second. Unlike JavaScript's built-in forEach() it will be invoked for each item in the list, even if it is undefined.
Example
Creates the sum of all list entries.
var sum = 0;
_(17, 4, 22).each(function(item, index) {
sum += item;
});
Example
The previous example with a native array:
var sum = 0;
_.each([17, 4, 22], function(item, index) {
sum += item;
});
Example
This goes through all h2 elements of the class 'section' on a web page and changes their content:
$('h2.section').each(function(item, index) {
item.innerHTML = 'Section ' + index + ': ' + item.innerHTML;
});
See also..
per()works like each(), but wraps the list elements in a list.find()can be used instead of each() if you need to abort the loop.eachObj()iterates through the properties of an object.
Comments
comments powered by DisqusFunctions
- $() Web
- list.length Web, Util
- $$() Web
- $.getCookie()
- $.loop() Web
- $.off() Web
- $.parseJSON() Web
- $.ready() Web
- $.request() Web
- $.setCookie()
- $.toJSON() Web
- $.wait()
- .add() Web
- .addAfter() Web
- .addBefore() Web
- .addFront() Web
- .animate() Web
- .array() Util
- .call() Util
- .clone() Web
- .collect() Web, Util
- .contains() Util
- .dial() Web
- .each() Web, Util
- .endsWith() Util
- .equals() Util
- .fill() Web
- .filter() Web, Util
- .find() Web, Util
- .findLast() Web, Util
- .get() Web
- .hide() Web
- .ht()
- .intersection() Util
- .is() Web
- .join() Util
- .map() Util
- .merge() Util
- .next() Web
- .not() Web
- .offset()
- .on() Web
- .onChange() Web
- .onClick() Web
- .onFocus() Web
- .onOver() Web
- .only()
- .per() Util
- .reduce() Util
- .remove() Web
- .replace() Web
- .reverse() Util
- .select() Web
- .set() Web
- .show() Web
- .sort() Util
- .startsWith() Util
- .sub() Web, Util
- .text() Web
- .toObject() Util
- .toggle() Web
- .trav() Web
- .trigger() Web
- .uniq() Util
- .unite() Util
- .up() Web
- .values() Web
- EE() Web
- HTML() Web
- M Web, Util
- MINI.getter Web
- MINI.setter Web
- Minified Lists Web, Util
- Promise Web, Util
- _() Util
- _.bind() Util
- _.copyObj() Util
- _.dateAdd() Util
- _.dateClone() Util
- _.dateDiff() Util
- _.dateMidnight() Util
- _.eachObj() Util
- _.escapeHtml() Util
- _.escapeRegExp() Util
- _.extend() Util
- _.filterObj() Util
- _.format() Util
- _.formatHtml() Util
- _.formatValue() Util
- _.isBool() Util
- _.isDate() Util
- _.isEmpty() Util
- _.isFunction() Util
- _.isList() Util
- _.isNumber() Util
- _.isObject() Util
- _.isString() Util
- _.isValue() Util
- _.keys() Util
- _.mapObj() Util
- _.pad() Util
- _.parseDate() Util
- _.parseNumber() Util
- _.partial() Util
- _.promise()
- _.range()
- _.template() Util
- _.toString() Util
- _.trim() Util
- _.values() Util
- define() Web, Util
- promise.always()
- promise.error() Web, Util
- promise.fire()
- promise.stop()
- promise.then() Web
- require() Web, Util
- How to...