Can a reserved word be used as an object's property name?

This issue was raised in indirectly previous a stackoverflow question. the answer seemed general consensus by @Squeegy:

You can use those words, but only as strings and not shorthand properties - foo["class"] is cool, whereas foo.class is not
helpfully giving a link to the list of reserved words

while I think that @Squeeky is probably more knowledgeable than me in this area and it is probably a bad idea to use reserved words in some situations, I think his conclusion is wrong based on two points:

  • testing of the reserved words using them as a "shorthand" properties

  • the HTMLFormElement makes it impossible not to use reserved words in "shorthand"

First, using the reserved word list, each was added as a property to an Object and HTMLElement, both as obj["word"] and obj.word, and then retrieved as obj["word"] and obj.word. In each of the 63 cases all eight tests worked correctly.

Second, the HTMLFormElement necessitates this works because it retrieves in its elements using shorthand notation. If <input name='typeof' value='scalar' /> is an element of a form, then form.typeof == "scalar".

From my experience, reserved words are usually data inflicted (eg, a column named "private"), not program inflicted. As such they contaminate JSON objects, and from there INPUT, and from there the HTMLFormElement. Simply put, without a huge amount of (imho unnecessary) work, it's impossible to keep reserved words not being forced to work correctly in shorthand.

It seems to me these real problems:

  • care needs to be taken not to conflict with existent properties, not reserved words

  • (many if not all) variables cannot be reserved words

  • use of reserved words as properties can be (but are not necessarily) confusing

Is this conclusion correct then, that reserved words as property names, and accessing them either as strings or shorthand, is just fine - as long as a little common sense is applied to the situation?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

I'm not quite sure what the point is you want to make, so the only answer I can give is: Yes, it's ok to use reserved words as property names.

(However to small remarks: foo["class"] is ok, not foo[class]. And any way you should be using form.elements["xyz"] and not form.xyz to access an element named xyz.)

link|improve this answer
absolutely agree on using form.elements['abc'] instead of form.abc - but the point is javascript browser supports form.abc by definition. fixed typo above. through google and the quality, stackoverflow is becoming a highly regarded reference. when I referenced, did not makes sense, so "trying to set the record straight" - and thinking I might be wrong at that. – cc young Aug 11 '11 at 8:57
The non-JSR223 implementation of the Mozilla Rhino JavaScript engine does this when the script throws a JavaException. If you need to do special logic to handle it, you need to check exception.javaException["class"].name to see if it matches the Java class name of the specific exception you're looking for. – sworisbreathing Nov 2 '11 at 15:58
feedback

Your Answer

 
or
required, but never shown

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