JSFiddle - React, Tailwind, and code Playground

by Artem

JavaScript

var MYAPP = (function(){
	var a = 5;
  return {
  	b: 5
  };
})();

console.log(MYAPP.b);
console.log(MYAPP);