I've seen this other question, unfortunately the answers spend too much attention on Unicode and say nothing about normal ASCII characters.
I need to know which 7-bit ASCII characters (0..127) are valid in a Javascript identifier name.
I've seen this other question, unfortunately the answers spend too much attention on Unicode and say nothing about normal ASCII characters.
I need to know which 7-bit ASCII characters (0..127) are valid in a Javascript identifier name.
According to this article, this is all about javascript variables :
The general rules for constructing names for variables (unique identifiers) are:
Names can contain letters, digits, underscores, and dollar signs. Names must begin with a letter Names can also begin with $ and _ Names are case sensitive (y and Y are different variables) Reserved words (like JavaScript keywords) cannot be used as names
You can use all ASCII codes. but you have to comply with above rules.