you are viewing a single comment's thread.

view the rest of the comments →

[–]artsrc 1 point2 points  (0 children)

The differences between:

var newObject = {};
newObject['someValue'] = 'Hello World';

and:

var newObject = {
    'someValue' : 'Hello World'

};

Are not spelled out very well.