JSFiddle - React, Tailwind, and code Playground
CSS
* {
background-color: #fff
}
JavaScript
foo = [
{
"name": "Zulh",
get name_uppercase () {
return (this.name).toUpperCase();
}
},
{
"name": "John",
get name_uppercase () {
return (this.name).toUpperCase();
}
}
]
document.write(foo[0].name_uppercase);