JSFiddle - React, Tailwind, and code Playground

by Jose Montero

JavaScript

function cache(){

	return {
  	name : getName()
  }
}
function getName(){
	return "Jose";
}

let obj = cache();
console.log(cache.name)