This is a post from my personal blog located Here
They are published there a day or so early. How fancy.
I often encourage my students to use the...
For further actions, you may consider blocking this person and/or reporting abuse
Array.map is very useful yes.
I think “These three functions could probably remove thousands of lines of your most confusing buggy code.“ is a bit of an overstatement.
Also: there are situations where you’d rather have a for loop than map: if you want to mutate the array in-place (for performance reasons for example).
I think it depends. I mostly write React these days and I almost never use a for loop. The nice thing about maps is they implictly return an array, allowing you to avoid all imperative code. They also make it so you are not writing code with side effects.
Performance might be a reason for a for loop, but that eliminates the gains that you get from having immutable data structures in your code.
Though I agree that immutability and functional programming are very useful, and I like writing that style of code, you can always come across a situation where a certain amount of performance is necessary so that creating a lot of new data structures or very big ones (like map does) is not an option.
it is an overstatement if you are a strong developer writing clear easy to follow loops. Newbies rarely do, good point about perf though!
If you want to mutate an array in place, you could also use reduce. While it's recommend to create a new array, it is technically possible to mutate an existing array with reduce.
Nice explanation! Simple and concise. 😄
You've got a typo in your second code block:
There's a good book that's written for PHP, but provides a good understanding of higher-order functions like
map
andfilter
, written by Adam Wathan, called Refactoring to Collections.It really helped me clean up and understand the work I do, on both front and backend layers.
Nice article Levi. But now i'm stuck using old school javascript because of my users still use IE 9. :'(
Just little bit input:
Ooh good catch on both! I’ll need to edit this when I can!
While we are at typos catching :)
I find that teaching people that map means basically "Transform", and that reduce is basically "Sum" helps most people. To be fair reduce can be more than summing, but map is really transforming the data so its helpful to think that way I've found.
Great article Levi!
map
is a great tool to add to your toolbox as a developer!Definitely one of my favorites!
Thanks, It is valuable.
I understand exactly what you are talking about because I struggle to use map, filter and reduce. Excellent post! Waiting for "How the hell do I use reduce" and "How the hell do I use filter".
Excellent points didn't really consider this! My next title in the series will be more clear. Thanks!