How would I go about referencing a JavaScript hash key within the object itself? Fore example, I want to be able to actually make use of the "theme" key. Would I use "this" to reference "theme"?
window.EXAMPLE = {
config : {
theme: 'example',
image_path: '/wp-content/themes/' + this.theme + '/img/',
}
}