Working with multiple of lists in JavaScript

from blog Oliver Caldwell's blog, | ↗ original
If you’ve ever had to iterate over multiple lists at the same time or map a filtered map of a map, you’ll understand that nesting all of those blocks and callbacks isn’t very easy to work with or understand. Luckily, there’s some cool techniques that make turning several arrays (or infinite sequences created by generators, for example) into a...