in JSON.js
method serialize
for an array
the loop should begin at 0
function serialize(value) {
....
for (i = 0; i < len; i += 1) { <---- here
v = filter(value, i);
if (v !== undefined) {
if (needComma) {
out.push(',');
} else {
Cheers,
Sylvain Pointeau
Original issue reported on code.google.com by sylvain....@gmail.com on 19 Oct 2007 at 2:04
Original issue reported on code.google.com by
sylvain....@gmail.com
on 19 Oct 2007 at 2:04