🔐reserved word
keywords that can't be used as identifier. (except for property names)
// ⭐️ 38 reserved words
await break case catch class const continue debugger default delete do
else enum export extends false finally for function if import in
instanceof new null return super switch this throw true try typeof
var void while with yield
// ⭐️ `await`, `yield` are also contextual keywordsLast updated