DEV Community

Discussion on: Practical Ways to Write Better JavaScript

Collapse
 
cookavich profile image
Paul Cook

One of the best things I've done for writing better JS was to really understand the native array methods like map, reduce, filter, etc.

So much of what we do as developers is the manipulation and processing of data, and if you can learn how to do that in a declarative rather than imperative way your life is going to be so much better.

Collapse
 
taillogs profile image
Ryland G

Couldn’t agree more. One path scales the other doesn’t.