Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
possible duplicate of Why are some object-literal properties quoted and others not? – Bergi Apr 21 at 13:07
Seems like they should be merged? – rynah Apr 21 at 13:53

4 Answers

up vote 11 down vote accepted

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.

share|improve this answer
4  
Actually, the quotes can make a difference if you use a numeric literal as a property name. For example, obj = { 12e34: true }; is not the same as obj = { '12e34': true };. The former would require you to access the property through obj['1.2e+35'], while for the latter you’d use obj['12e34']. See my answer for more details. – Mathias Bynens Mar 6 '12 at 12:18

From Unquoted property names / object keys in JavaScript, my write-up on the subject:

Quotes can only be omitted if the property name is a numeric literal or a valid identifier name.

[…]

Bracket notation can safely be used for all property names.

[…]

Dot notation can only be used when the property name is a valid identifier name.

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.

Screenshot

share|improve this answer

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.

share|improve this answer

No, not to javascript. However, some JSON parsers will fail when the quotes around the keys are not present.

share|improve this answer
5  
Keys without quotes are invalid in JSON. – Ned Batchelder Dec 3 '10 at 18:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.