JSFiddle - React, Tailwind, and code Playground

by Nimeshka Srimal

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);