JSFiddle - React, Tailwind, and code Playground
JavaScript
var x = {
"a" : function(q) { return q+1; },
"b" : function(w) { return (this["a"])(1); }
};
document.body.innerHTML = x.b(1);
var x = {
"a" : function(q) { return q+1; },
"b" : function(w) { return (this["a"])(1); }
};
document.body.innerHTML = x.b(1);