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) Understanding State Create a Stateful Component

Browser (chrome) doesn't recognize the state. Score isn't showing as 0 when I put it within the state.

 class Counter extends React.Component {
  constructor() {
    super()
    this.state = {
      score: 0 
    };
  }

  render() {
   return (
 <div className="counter">
      <button className="counter-action decrement"> - </button>
      <span className="counter-score">{this.props.score}</span>
      <button className="counter-action increment"> + </button>
    </div>
      );
    }
  }

it shows previous scores that were listed

1 Answer

Torben Korb
seal-mask
PLUS
.a{fill-rule:evenodd;}techdegree seal-36
Torben Korb
Front End Web Development Techdegree Graduate 91,394 Points

Hi Shamique,

in your counter-score you'll need to reference to this.state.score instead of this.props.score when you refactor the Class.

Hope this helps. Happy coding!

Thank you!