In addition to what ChaosPandion mentioned, there's an important difference between a , at the end of an object and an array. Empty commas in an array (technically called elisions) insert undefined elements at the corresponding position; this increases the length of the array but the values are undefined.
Edit: Thanks to ChaosPandion and CMS for pointing out the error. I just reread the specs and indeed a single trailing comma does not increase the length, however any additional trailing commas or any commas in the middle of an array will increase the length.
For example, [ 1,2,, ] is an array of length 3 and the same as [ 1, 2, undefined ]. Similarly, [ 1,,,2 ] is an array of length 4 and the same as [ 1, undefined, undefined, 2 ].
Strangely enough, when it comes to this "feature" of JavaScript, IE behaves correctly with a trailing comma in an array (it counts the extra element) while Firefox ignores the last undefined element.