4 out of 9 rated this helpful - Rate this topic

JavaScript Future Reserved Words

JavaScript - Internet Explorer 10

In JavaScript, future reserved keywords must not be used as identifiers, even though they have no special meaning in the current version.

For a list of reserved words in JavaScript, see JavaScript Reserved Words.

The following are future reserved words:

  1. class

  2. const

  3. enum

  4. export

  5. extends

  6. import

  7. super

The following are future reserved words only in strict mode. For more information about strict mode, see use strict Directive.

  1. implements

  2. interface

  3. let

  4. package

  5. private

  6. protected

  7. public

  8. static

  9. yield

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.