When you are using an object literal, then a property name can be any of the following:
IdentifierName
StringLiteral
NumericLiteral
StringLiteral and NumericLiteral should be clear. What exactly is a IdentifierName?
Lets have a look at section 7.6 of the specification:
IdentifierName ::
IdentifierStart
IdentifierName *IdentifierPart*
IdentifierStart ::
UnicodeLetter
$
_
\ UnicodeEscapeSequence
IdentifierPart ::
IdentifierStart
UnicodeCombiningMark
UnicodeDigit
UnicodeConnectorPunctuation
<ZWNJ>
<ZWJ>
So, an IdentifierName really is any character sequence as described above. Whether is a reserved word does not matter.
The names you can use for variable and function names are called Identifiers and are defined as:
Identifier ::
IdentifierName but not ReservedWord
You see, reserved words are explicitly excluded as possibilities for identifiers, but not for object properties.
However, you never know how "good" a parser is and if it adheres to all rules. Additionally, linting tools such as JSHint will usually warn you of the use of a reserved keyword, despite the fact that it is valid.
To be on the safe side, you should put such words in quotes and even use bracket notation to access it:
var foo = {'delete': ... }
foo['delete'] = ....;
If this is too cumbersome, just don't use a reserved word as property name. For example, instead of delete, you could use remove.
deletewill continue to work as usual. – Sirko Oct 11 '12 at 13:28