🚧 under construction -> configurable
Last updated 2 years ago
JS ⟩ value ⟩ object ⟩ property ⟩ access ⟩ delete ⟩ unqualified identifier
only object's configurable properties are "qualified" for "delete", other identifiers are "unqualified" ( can't delete them). 📘 MDN
delete of an unqualified identifier in strict mode❗️
undeclared identifier
👉 related:class body has its own "this" context
typeof undeclared === "undefined" // true
SyntaxError: applying the 'delete' operator to an unqualified name is deprecated ⭐️
configurable