(and several months later I finish my little JSON series…)
So far my exploration of JSON has been a fun-filled walk in the park. Moonbeams and rainbows. All that.
This last post on the subject is slightly less cool as I get into one of the least attractive components of the whole JSON thing- the use of eval()
to transform a text response into a proper JavaScript object. The use of eval()
is one of the reasons I originally was a little shy about using JSON. Why? eval()
is slow and I try to stay away from slow if at all possible. That and the idea of eval()
-ing code from some third party makes me wary.
Continue reading “JSON Feeds For Fun and Profit Part 3- wherein Eval() kind of bums me out”