JSFiddle - React, Tailwind, and code Playground

by qhoc

JavaScript 1.7

class MyClass {
	constructor() {
  	this.data = {};
    this.data.a = 1;
  }
  
  set data(newVal) {
  	console.log(newVal);
  }
}