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 Changing Guest Name in State

Would there be any benefit of only updating state when the user clicks the "save" button?

Does updating the App State on every change of the input have any performance impact? How would this solution be different if we followed this pattern?

1 Answer

Steven Parker
Steven Parker
229,732 Points

Sensing only the button would be more conservative of the CPU resource, but when a browser is waiting on user interaction it generally has nothing else to do, so it would make no detectable difference in performance to the user.

Thank you Steven!