🔑contextual keyword

🚧 施工中

JSgrammarkeyword ⟩ contextual keyword

keyword that can/cannot be used as identifier in some contexts.

// 18 contextual keywords
as async from get implements interface let of 
package private protected public set static target
await yield    // ⭐️ reserved words

await, yield are reserved word and contextual keywords at the same time.

  • NaN, Infinity, and undefined are:

  • JavaScript does not throw any errors if you declare them in the global scope.

📗TeckTutorialHub

Last updated