18/08/2018, 11:17

Từ dành riêng (Reserved Words) trong JavaScript

- Từ dành riêng là những từ hệ thống, ta không thể sử dụng chúng để đặt tên cho biến, hàm, đối tượng, .... - Dưới đây là danh sách các từ dành riêng: abstract arguments await* boolean break byte case catch char class* const continue debugger default delete ...

- Từ dành riêng là những từ hệ thống, ta không thể sử dụng chúng để đặt tên cho biến, hàm, đối tượng, ....

- Dưới đây là danh sách các từ dành riêng:

abstract arguments await* boolean
break byte case catch
char class* const continue
debugger default delete do
double else enum* eval
export* extends* false final
finally float for function
goto if implements import*
in instanceof int interface
let* long native new
null package private protected
public return short static
super* switch synchronized this
throw throws transient true
try typeof var void
volatile while with yield

- Nên tránh sử dụng tên của các đối tượng, thuộc tính, phương thức được xây dựng sẵn:

Array Date eval function
hasOwnProperty Infinity isFinite isNaN
isPrototypeOf length Math NaN
name Number Object prototype
String toString undefined valueOf

- JavaScript có thể được sử dụng như một ngôn ngữ lập trình trong nhiều ứng dụng. Do đó, chúng ta cũng nên tránh sử dụng tên của các đối tượng và thuộc tính của HTML và Window:

alert all anchor anchors
area assign blur button
checkbox clearInterval clearTimeout clientInformation
close closed confirm constructor
crypto decodeURI decodeURIComponent defaultStatus
document element elements embed
embeds encodeURI encodeURIComponent escape
event fileUpload focus form
forms frame innerHeight innerWidth
layer layers link location
mimeTypes navigate navigator frames
frameRate hidden history image
images offscreenBuffering open opener
option outerHeight outerWidth packages
pageXOffset pageYOffset parent parseFloat
parseInt password pkcs11 plugin
prompt propertyIsEnum radio reset
screenX screenY scroll secure
select self setInterval setTimeout
status submit taint text
textarea top unescape untaint
window
0