JSFiddle - React, Tailwind, and code Playground

by Boba Poshtar

JavaScript

let a = {
	m: 'hey',
  g: {
  	k: 'kkk',
  	t: function(){
    	console.dir(a.m);
    }
  }
}

a.g.t();