Hacker News new | ask | show | jobs
by thekaleb 3264 days ago
Unless you need to add something to the beginning.
1 comments

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.