blob: 710a7ff27fe915fd6f3a91074ddf13588a4d9de3 [file] [log] [blame] [view]
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01001[TOC](Readme.md) [Prev](commas.md) [Next](curly.md)
2
Marcel van Lohuizenaf0932f2019-01-11 13:03:56 +01003_JSON Sugar and other Goodness_
4
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01005# Commas are Still Required in Lists
6
7
8Commas are still required as separators in lists.
9The last element of a list may also have a comma.
10
11<!-- CUE editor -->
12```
13[
14 1,
15 2,
16 3,
17]
18```
19
20<!-- JSON result -->
21```json
22[
23 1,
24 2,
25 3
26]
27```