Let's say I have this global object:
funky_baby = {
"wonk wonk": "clunk",
"zipee": "chugga chugga",
"ahoooga": "boioioioing"
};
And I want to access it using the string "funky_baby". I am currently using this method:
window["funky_baby"];
This doesn't seem like it will be very multi-browser friendly to me. Is there a better way to accomplish this task?