vote up 5 vote down star

When manually generating a JSON object or array, it's often easier to leave a trailing comma on the last item in the object or array. For example, code to output from an array of strings might look like (in a C++ like pseudocode):

s.append("[");
for (i = 0; i < 5; ++i) {
    s.appendF("\"%d\",", i);
}
s.append("]");

giving you a string like

 [0,1,2,3,4,5,]

Is this allowed?

flag

Did you ask this just to answer it? I'm not opposed to the idea of asking questions so a particularly unique problem can be solved, or a common problem solved with a particularly clever answer, but this didn't strike me as a... burning question. – eyelidlessness Oct 14 '08 at 16:14
It was something I needed to lookup up on the web a few days ago. I didn't see an answer here on SO, so in following the mission of the site, I posed the question and answered it so others could find it. This is something Jeff explicitly said he wanted done here. – Ben Combee Oct 14 '08 at 16:16
With something so basic that the answer is found by looking at the official spec, this sounds more like fishing for points than providing helpful answers to unsolved problems. Sorry dude. – eyelidlessness Oct 14 '08 at 16:26
If it's any consolation, I didn't downvote, I just added the tag because I thought it was appropriate. – eyelidlessness Oct 14 '08 at 16:26
As Jeff did say, I think its perfectly fine to use SO as a 'notebook' of things that you had to spend some time looking up. Sure, this is on the simple end of those types of items, but I still think its appropriate, especially since different javascript engines will deal with this differently. – pkaeding Oct 14 '08 at 16:31
show 7 more comments

5 Answers

vote up 1 vote down check

In general I try turn the problem around, and add the comma before the actual value, so you end up with code that looks like this:

s.append("[");
for (i = 0; i < 5; ++i) {
  if (i) s.append(","); // add the comma only if this isn't the first entry
  s.appendF("\"%d\"", i);
}
s.append("]");

That extra one line of code in your for loop is hardly expensive...

Another alternative I've used when output a structure to JSON from a dictionary of some form is to always append a comma after each entry (as you are doing above) and then add a dummy entry at the end that has not trailing comma (but that is just lazy ;->).

Doesn't work well with an array unfortunately.

link|flag
vote up 2 vote down

No. The JSON spec, as maintained at json.org, does not allow trailing commas. From what I've seen, some parsers may silently allow them when reading a JSON string, while others will throw errors. For interoperability, you shouldn't include it.

The code above could be restructured, either to remove the trailing comma when adding the array terminator or to add the comma before items, skipping that for the first one.

link|flag
vote up 1 vote down

PHP coders may want to check out implode(). This takes an array joins it up using a string.

From the docs...

$array = array('lastname', 'email', 'phone');
echo implode(",", $array); // lastname,email,phone
link|flag
vote up 0 vote down

Interestingly, both C & C++ (and I think C#, but I'm not sure) specifically allow the trailing comma -- for exactly the reason given: It make programmaticly generating lists much easier. Not sure why JavaScript didn't follow their lead.

link|flag
ECMA has explicitly specified that trailing commas are allowed in the upcoming spec: ejohn.org/blog/bug-fixes-in-javascript-2 Yet another reason to be clear that JSON != JS Object. – eyelidlessness Oct 14 '08 at 18:20
vote up 0 vote down

I usually loop over the array and attach a comma after every entry in the string. After the loop I delete the last comma again.

Maybe not the best way, but less expensive than checking every time if it's the last object in the loop I guess.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.