Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Building Applications with React and Redux Actions, Dispatch, and Reducers. Oh my! Intro to Action Types

Actiontypes declaration

I discovered that Guil used "player/ADD_PLAYER" to declare his action types. Surprisingly, I tried using "ADD_PLAYER" and my code still works as expected. Please can anybody tell me the difference/implications in using those two action types declarations.

1 Answer

Nancy Zhang
Nancy Zhang
8,369 Points

I think it's more like a good practice to add the "player/" or whatever the component name. So for later on debugging(e.g. the Redux DevTool in a later video), It is easier to identify where this action is being invoked.