JSFiddle - React, Tailwind, and code Playground
by luka kupunia
HTML
<div id="demo"></div>
CSS
div#demo {
width: 200px;
height: 200px;
background: red;
}
JavaScript
var obj = {
name : this,
surname: function(){
return this
},
age: {
luka : this
}
}
console.log(obj.name, obj.surname, obj.age.luka)