JSFiddle - React, Tailwind, and code Playground

by incutonez

JavaScript 1.7

class blah {
	x = 1;
  
  constructor(config) {
  	console.log(this.x);
  }
}

class blah2 extends blah {
	x = 2;
}

new blah2()