trailingComma
Control whether trailing comma should be inserted or not.
Default option is true.
Example for false
- [
a
]
- {
a: b
}
Example for true
- [
a,
]
- {
a: b,
}
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
trailingCommaControl whether trailing comma should be inserted or not.
Default option is true.
false- [
a
]
- {
a: b
}
true- [
a,
]
- {
a: b,
}