JSFiddle - React, Tailwind, and code Playground

by evgkch

JavaScript

class Test {
	static get a() {
  	this.__private__ = 1;
  	return this;
  }
}

console.dir(Test.a)