Claude Pache (2013-08-28T16:40:13.000Z)
domenic at domenicdenicola.com (2013-08-31T20:58:47.234Z)
Note that an equivalent of both `.map` and `.filter` already exists in ES6: its name is "generator expression". For instance: ```js array.filter(pred).map(transf) ``` becomes: ```js (for (let x of iter) if (pred(x)) transf(x)) ```