JSFiddle - React, Tailwind, and code Playground

by himel023

JavaScript

function changeColor(){
    var newColor = this.state.color === green ? yellow : green;
    this.setState({ color: newColor });
  }
  
  
  
  changeColor() {
    const newColor = this.state.color == green ? yellow : green;
    this.setState({ color: newColor });
  }