No, you don't need to do that.
The only reasons to quote object-keys are
- the property name is reserved/used by the browser/js engine (eg. "class" in IE)
- you have special characters or white spaces in your key
so for instance
var VariableName = {
"some-prop": 42, // needs quotation because of `-`
"class": 'foobar' // doesn't syntatically require quotes, but it will fail on some IEs
valid: 'yay' // no quotes required
};