ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
Error: missing name after . operator * * * * * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Keywords #### Keywords ##### Reserved keywords as of ECMAScript 2015 * break * case * catch * class * const * continue * debugger * default * delete * do * else * export * extends * finally * for * function * if * import * in * instanceof * new * return * super * switch * this * throw * try * typeof * var * void * while * with * yield ##### Future reserved keywords The following are reserved as future keywords by the ECMAScript specification. They have no special functionality at present, but they might at some future time, so they cannot be used as identifiers. These are always reserved: * enum The following are only reserved when they are found in strict mode code: * implements * interface * let * package * private * protected * public * static The following are only reserved when they are found in module code: ##### Future reserved keywords in older standards The following are reserved as future keywords by older ECMAScript specifications (ECMAScript 1 till 3). * abstract * boolean * byte * char * double * final * float * goto * int * long * native * short * synchronized * throws * transient * volatile Additionally, the literals null, true, and false cannot be used as identifiers in ECMAScript.