JSFiddle - React, Tailwind, and code Playground

by Richard Hunter

JavaScript

(function(){
	function sayHello(){
		var name = "Hi John";
		return {
			fullName: name
		}
	}
	console.log(sayHello().fullName);
})();