开发者

What is the Javascript Package keyword used for?

开发者 https://www.devze.com 2023-03-09 05:30 出处:网络
I was reading some online material on reserved JavaScript keywords and I came acro开发者_Python百科ss the word package.

I was reading some online material on reserved JavaScript keywords and I came acro开发者_Python百科ss the word package.

I couldn't find any clear online material that could explain what it is useful for.


It is reserved, but not necessarily used (well, not at least of time of writing).

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. (Note that for the moment Mozilla reserves these keywords only in strict mode code. Most other browsers reserve these keywords in all code, whether strict or not, so their use is very much non-portable. Mozilla will likely reserve these keywords in normal code in a future release, to conform to the specification and to be consistent with other browsers).

Source.


The following are reserved as future keywords by the ECMAScript specification when they are found in strict mode code, except that let and yield have their traditional Mozilla-specific functionality in code compiled as JavaScript 1.7 or greater:

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

More information from MDC: https://developer.mozilla.org/en/JavaScript/Reference/Reserved_Words

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号