What characters are valid for JavaScript variable names?

后端 未结 12 1877
情深已故
情深已故 2020-11-21 04:26

Which characters can be used for naming a JavaScript variable?

I want to create a small \"extension library\" for my non-JavaScript users here at work (who all seem

12条回答
  •  我在风中等你
    2020-11-21 04:55

    Wrote a glitch workspace that iterates over all the codepoints and emit the character if eval('var ' + String.fromCodePoint(#) + ' = 1') works.

    It just keeps going, and going, and going....

提交回复
热议问题