Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
are you shure it wasn't a generated comment that explains something (functionality,arguments) about a certain function? – gion_13 Apr 24 '12 at 18:58
4  
It's possible they were replacing those tokens server-side. – simshaun Apr 24 '12 at 18:58
1  
Even if it works in some random JS engine, it doesn't matter because it won't work in most of them. Don't do this. – cwolves Apr 24 '12 at 18:59
It's definitely not a comment, though it could be replaced server side -- Thanks for the ideas! – Pregnant mom Apr 24 '12 at 20:04

2 Answers

up vote 6 down vote accepted

This is totally valid:

var π = Math.PI;

This does not appear to be valid:

var @yourName = "Jamund";

This works though:

var $yourName = "Jamund";

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.

share|improve this answer

Chapter 7.6 of ECMA-262, 5.1 edition defines what an identifier is. As @ is not allowed, you should not use it even if some browser may accept it. You should always strife for the broadest compatibility amongst all browsers if possible. Not using the @ in an identifier should not hinder you in any way.

 IdentifierName ::
     IdentifierStart
     IdentifierName IdentifierPart

 IdentifierStart ::
     UnicodeLetter
     $
     _
     \ UnicodeEscapeSequence

 IdentifierPart ::
     IdentifierStart
     UnicodeCombiningMark
     UnicodeDigit
     UnicodeConnectorPunctuation
     <ZWNJ>
     <ZWJ>
share|improve this answer

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.