JSFiddle - React, Tailwind, and code Playground

by Artem

JavaScript

'use strict';

class AC {
	constructor(a) {
  	throw new Error('err');
  }
}

class Foo extends AC {
	constructor(a) {
  	this.a = a;
  }
}

const f = new Foo(5);