I've come across someone's old code that has variables identified like: @user_id@, @reference_id@, and so forth. Wikipedia says "In certain JavaScript implementations, the at sign (@) can be used in an identifier..." In what JS implementations does this work? I can't get it to work.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
This is totally valid:
This does not appear to be valid:
This works though:
If you're bored and want to learn all of the gory details: http://mathiasbynens.be/notes/javascript-identifiers As for your specific problem, yeah it's probably either in a comment (JavaDoc uses @ in its comments and sometimes it's style has been used in JS comments) or it was meant to be processed and replaced server-side. |
|||
|
|
|
Chapter 7.6 of ECMA-262, 5.1 edition defines what an identifier is. As
|
||||
|
|