René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

toSource [JavaScript snippet]

function main() {

  var obj = {
    numbers: {
      fourty_two : 42,
      31         : "thirty one",
    },
    foo : {
      bar : {
        baz : "etc",
      },
    }
  };

  txt_out(obj.toSource());
}