Does jQuery offer an equivalent iterator function to "collect" and "map" in Prototype? These functions return the result of applying an iterator to each element: http://www.prototypejs.org/api/enumerable/collect
Thanks!
|
Does jQuery offer an equivalent iterator function to "collect" and "map" in Prototype? These functions return the result of applying an iterator to each element: http://www.prototypejs.org/api/enumerable/collect Thanks! |
||||
|
|
There's a "map()" but no "reduce()" or "collect()". The jQuery people have a considerable history of being resistant to adding a "reduce()" in the absence of clear benefit to the jQuery core code itself. You can pick up and extend simple implementations of functions like that from the Functional.js library. Also, be warned that the jQuery "map" facility has a couple of questionable features that are handy at times but a serious pain at others. Specifically, the callback function passed in to "map()" returns a value for the result array, as you might expect. However there are two special cases:
Both those treats are handy sometimes but after spending half a day discovering the second one (yes, it's documented) I've got some painful memories :-) |
||||
|
|
|
The jQuery equivalent is So if in Prototype you have:
Simply replace
|
|||
|