[EMAIL PROTECTED] wrote: > Hi All, > i am new of using to javascript framework.please any one > tell me about the "Utility Methods"....what is mean of $ sign ,why we > use them.....it is method or other thing. > i am waiting your response . > > Thanks > > Shahzad In javascript, the dollar sign is a valid character for variable names. Variables (and function names) follow this regular expression:
^[a-zA-Z_\$][a-zA-Z0-9_\$]*$ In other words, they must start with a letter, dollar sign, or underscore, and can have letters, numbers, dollar signs or underscores following. - Ken Snyder --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
