Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

190
Views
Why is setState not working in the event handler?

I wrote a simple React app having a class Component and a name state in it. I am expecting to change the state name value via button click But it doesn't work

Here is my code :

import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';

class Demo extends React.Component {
  state ={
    name:"Hello"
  }
  fun() {
    this.setState({
      name:"World"
    });
  }
  render() {
    return <p>{this.state.name+" "}<br/><button onClick={this.fun}>Click</button></p>;
  }
}
ReactDOM.render(
  <Demo/>,
  document.getElementById('root')
);
reportWebVitals();
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!