在线文档教程
JavaScript
错误 | Errors

Errors: Identifier after number

Errors: Identifier after number

信息

SyntaxError: identifier starts immediately after numeric literal (Firefox) SyntaxError: Unexpected number (Chrome)

错误类型

SyntaxError

什么地方出了错?

变量的名称,称为标识符,符合某些规则,您的代码必须遵守!

JavaScript标识符必须以字母,下划线(_)或美元符号($)开头。他们不能以数字开头!只有后续字符可以是数字(0-9)。

例子

以数字文字开头的变量名称

变量名称不能以JavaScript中的数字开头。以下失败:

var 1life = 'foo'; // SyntaxError: identifier starts immediately after numeric literal var foo = 1life; // SyntaxError: identifier starts immediately after numeric literal

您将需要重命名您的变量,以避免领先的数字。

var life1 = 'foo'; var foo = life1;