予約語 (reserved word)

現在の予約語

  • break
  • case
  • catch
  • continue
  • debugger
  • default
  • delete
  • do
  • else
  • finally
  • for
  • function
  • if
  • in
  • instanceof
  • new
  • return
  • switch
  • this
  • throw
  • try
  • typeof
  • var
  • void
  • while
  • with

将来のための予約語

ECMAScript 1で定義

  • case
  • catch
  • const
  • debugger
  • default
  • do
  • enum
  • export
  • extends
  • finally
  • import
  • super
  • switch
  • throw
  • try

ECMAScript 2で定義

  • abstract
  • boolean
  • byte
  • case
  • catch
  • char
  • class
  • const
  • debugger
  • default
  • do
  • double
  • enum
  • export
  • extends
  • final
  • finally
  • float
  • goto
  • implements
  • import
  • instanceof
  • int
  • interface
  • long
  • native
  • package
  • private
  • protected
  • public
  • short
  • static
  • super
  • switch
  • synchronized
  • throw
  • throws
  • transient
  • try
  • volatile

ECMAScript 3で定義

  • 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

ECMAScript 5で定義

  • class
  • enum
  • export
  • extends
  • import
  • super

Strict モードでの予約語

  • implements
  • interface
  • let
  • package
  • private
  • protected
  • public
  • static
  • yield

Strict モード

JavaScriptのドキュメントから検索