JSFiddle - React, Tailwind, and code Playground
JavaScript
json = {
color: "blue",
dostuff: function(){ alert("stuff got did"); }
}
color = json['color'];
window.alert(color);
// works for functions too..
json['dostuff']();
json = {
color: "blue",
dostuff: function(){ alert("stuff got did"); }
}
color = json['color'];
window.alert(color);
// works for functions too..
json['dostuff']();