Y
Hacker News
new
|
ask
|
show
|
jobs
by
thekaleb
3264 days ago
Unless you need to add something to the beginning.
1 comments
WalterSear
3263 days ago
I prefer comma first notation.
const hello = { , 'one' , 'two' , 'three }
would be easier to visually parse than:
const hello = { 'one', 'two', 'three', }
Since the commas actually work as a guide.
link