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

Ahmed Mahrakawy
Ahmed Mahrakawy
713 Points

Why was props redefined in Counter.js? let index = props.index;

'Index' prop was passed down to the 'Player' component from the 'App' component index={index}, then down to the 'counter' component via index={props.index}.

In Counter.js, index was then redefined as let index = props.index;

to be used in the button: <button className="counter-action decrement" onClick={() => props.changeScore(index, -1)}> - </button>

My question is why did we redefine index? It works with: <button className="counter-action decrement" onClick={() => props.changeScore(props.index, -1)}> - </button>