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 by Example Building the Application Writing a Handler to Confirm Guests

Why I have an error on the property map?

When I click on the checkbox the app brokes and generate an error on the property Map.

TypeError: Cannot read property 'map' of undefined App._this.toggleGuestPropertyAt src/App.js:29 26 | 27 | toggleGuestPropertyAt = (property, indexToChange) => 28 | this.setState({

29 | guests: this.state.guests.map((guest, index) => { 30 | if(index === indexToChange){ 31 | return{ 32 | isConfirmed: !guest.isConfirmed,