JSFiddle - React, Tailwind, and code Playground

by Ace Tributon

JavaScript

class counter {
	constructor(first){
		return{
			first(){return first;},
      edit($){return first=$;}
    }
  }
}

// Play with the counter:
var {first,edit} = new counter(0);
edit(223);
console.log(first());