What characters are valid for JavaScript variable names?
Answers
Answered by
2
1. Name can begin with $ and _ characters, for example, _result.
2. You should not use any of the JavaScripts reserved keywords as a variable name.
3. JavaScript variable names should not start with a numeral (1-9).....
4. JavaScript variable names are case-sensitive.
Similar questions