關鍵字不可以作為變量名或者函數名
復制代碼 代碼如下:
break
case
catch
continue
default
delete
do
else
finally
for
function
if
in
instanceof
new
return
switch
this
throw
try
typeof
var
void
while
with
保留字是為以後關鍵字而准備的
也不可以用來變量或者函數名。
復制代碼 代碼如下:
abstract
boolean
byte
char
class
const
debugger
double
enum
export
extends
final
float
goto
implements
import
int
interface
long
native
package
private
protected
public
short
static
super
synchronized
throws
transient
volatile
在定義變量時,不要使用關鍵字或者保留字,否則會出現一些莫名其妙的情況。