JSFiddle - React, Tailwind, and code Playground

JavaScript

function Foo() {
  console.log('new foo');
}

function Bar() {
  console.log('new bar');
}

var objects = {
	'foo': Foo,
  'bar': Bar
};

var cls = objects.foo || Bar;

new cls();