blob: 710a7ff27fe915fd6f3a91074ddf13588a4d9de3 [file] [log] [blame] [view]
[TOC](Readme.md) [Prev](commas.md) [Next](curly.md)
_JSON Sugar and other Goodness_
# Commas are Still Required in Lists
Commas are still required as separators in lists.
The last element of a list may also have a comma.
<!-- CUE editor -->
```
[
1,
2,
3,
]
```
<!-- JSON result -->
```json
[
1,
2,
3
]
```