Is there any difference between
obj = {'foo':'bar'}
and
obj = {foo: 'bar'}
I have noticed that you can't use - in the key when you don't use the quotes. But does it actually make a difference? If yes, what is it?
|
Is there any difference between
and
I have noticed that you can't use |
|||||||
|
|
No, the quotes do not make a difference (unless, as you noted, you want to use a key that’s not a valid JavaScript identifier). As a side note, the JSON data exchange format does require quotes around identifiers. |
|||||
|
|
From Unquoted property names / object keys in JavaScript, my write-up on the subject:
Note that reserved words are allowed to be used as unquoted property names in ES5. However, for backwards compatibility with ES3, I’d suggest quoting them anyway. I also made a tool that will tell you if any given property name can be used without quotes and/or with dot notation. Try it at mothereff.in/js-properties. |
||||
|
|
|
There is no difference here. Just a matter of style. One of the reasons for doing this is being able to use 'super' or 'class' as a key since those are reserved keywords. Some people might be tempted to pass in a string with whitespace then call o['I can have whitespace'] But I would call that bad practice. |
|||
|
|
|
No, not to javascript. However, some JSON parsers will fail when the quotes around the keys are not present. |
|||||
|