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 React Basics (2018) Introducing Props Iterating and Rendering with map()

props

Why do we pass in the parameter of props & how is it being used ?

1 Answer

Steve Gallant
Steve Gallant
14,943 Points

According to Guil, "props" is just the convention used when coding React. It could be any parameter name of your choice.

The way it is used is that whenever the React function (e.g. "Player") is called in the JSX code, any attributes within the JSX tag are passed to the function as an object and stored into "props" (or whatever you name it). Then those attributes can be used within the function using dot notation.

I think I am describing this accurately and hope it helps!

Steve