Is it problematic to reference an object literal within a function which is part of that very literal? It seems to work just fine, but I want to make sure there aren\'t othe
I don't think there are any implications off the top of my head. Just make sure you don't accidentally do this at any point:
var obj = { key1: "it", key2: key1 + " works!" }
As that will cause an error. Other than that, you should be good to go!