Hacker News new | ask | show | jobs
by warfangle 4123 days ago
Well, technically, JSON is just a Plain Old Javascript Object, with restrictions (no expressions, quoted keys).
1 comments

Sort of, at least in the sense that you can eval JSON from JS code rather than having to parse it yourself. This is one of many language concepts that JavaScript cribbed from the Lisp/Scheme family of functional languages.