React - Write a Simple Counter

Tell us what’s happening:
Describe your issue in detail here.

Idk why this is not working.

Your code so far

class Counter extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      count: 0
    };
    // Change code below this line
    this.incrememt = this.increment.bind(this)
    this.decrement = this.decrement.bind(this)
    this.reset = this.reset.bind(this)
    // Change code above this line
  }
  // Change code below this line
  reset() {
    this.setState({count: 0})
  }

  decrement() {
    this.setState(state =>({count: state.count - 1}))}
  increment() {
    this.setState(state =>({count: state.count + 1}))}
  
  // Change code above this line
  render() {
    return (
      <div>
        <button className='inc' onClick={this.increment}>Increment!</button>
        <button className='dec' onClick={this.decrement}>Decrement!</button>
        <button className='reset' onClick={this.reset}>Reset</button>
        <h1>Current Count: {this.state.count}</h1>
      </div>
    );
  }
};

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36

Challenge: React - Write a Simple Counter

Link to the challenge:

There’s a typo in the line binding this.increment

this.incrememt = this.increment.bind(this)

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.