DEV Community

Discussion on: Javascript Array Methods. All you really need to know.

Collapse
 
rickdelpo1 profile image
Rick Delpo

Thanks for all the detail Walter. Was wondering if people use Lodash these days as a more intuitive way of understanding how reduce works. I had a use case for Lodash and wrote an AWS Lambda function with CRUD against an AWS S3 json file store.

Collapse
 
walterego profile image
Walter Miani

I use Lodash quite a lot, especially for the uniqBy and groupBy array methods. And also for its debounce and throttle. I actually wanted to write a paragraph for lodash in this post but in the end I decided against.

Collapse
 
rickdelpo1 profile image
Rick Delpo

Thanks, this is good to know because I do not write this kind of code too often. I still have trouble fully understanding the Reduce syntax because perhaps I am not that good at JS anyway. I am an SQL developer. Lodash seemed more user friendly.