When I’m writing Javascript or Actionscript, I like using JSON-style notation for creating objects and variables:
foo = {”status”: true
,”name”: “Brian”
,”values”: [0, 5, 11, 93, 2] }
In ColdFusion, the equivalent would be the tedious:
foo = structNew();
foo.status = true;
foo.name [...]