Hacker News new | ask | show | jobs
by toolate 5657 days ago

    function getCount()
    {
        return 
        {
            'count': 1
        };
    }
Not what I'd do, but a common style nonetheless.
2 comments

It's also completely valid JavaScript that does something very different than what it appears to.

    function getCount () {
      return undefined
      { // open code block
        'count': /*labelled line*/  1  //numeric expression
      } // close code block
    } // close function
LINE BREAKS CONSIDERED HARMFUL.
Which is why I'd say if you're writing javascript, use { brackets properly, and ; properly.

I agree, it's a common style, but a horrible one IMHO.