
Why you should use an object, and not an array, for lists in Redux
The same also applies to any state management tool
May 19, 2019 · 4 min read
If you are working on an application, chances are that you are using a list of items: users, comments, posts, todos, movies etc.
The most common data structure to choose for lists in Javascript is an array.


