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)
by Jose Montero
function cache(){
return {
name : getName()
}
}
function getName(){
return "Jose";
}
let obj = cache();
console.log(cache.name)