JSFiddle - React, Tailwind, and code Playground

by Ksenia Polyakova

JavaScript

(function() {

var Obj = function(){},
		a = new Obj(),
		b = new Obj(),
    c = new Obj(),
    Obj2 = function(){},
    d = new Obj2();
    
console.log( '?' );  // a, b и c
})();