//test trailing commas var a = [1, 2, 3, ]; print a; //test empty arrays var b = []; print b; //TODO: prevent circular references