JSFiddle - React, Tailwind, and code Playground

JavaScript

coisa = {
  test: {
    lang: "pt",
    keys: {
      a: "b",
      c: "d"
    }
  },
  ai: (function (){

      return test.keys;  
  })()
};

alert("res")
alert(coisa.ai.a)