| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ru/docs/Web/JavaScript/Reference/Errors/Delete_in_strict_mode | [Back] [Original] |
Get to know MDN better
This page was translated from English by the community. Learn more and join the MDN Web Docs community.
"applying the 'delete' operator to an unqualified name is deprecated" delete.
SyntaxError: Delete of an unqualified identifier in strict mode. (V8-based) SyntaxError: applying the 'delete' operator to an unqualified name is deprecated (Firefox) SyntaxError: Cannot delete unqualified property 'a' in strict mode. (Safari)
JavaScript delete. .
delete . "", .
, delete . , , delete.
JavaScript :
"use strict";
var x;
// ...
delete x;
// SyntaxError: 'delete'
, :null
"use strict";
var x;
// ...
x = null;
// X ""
This page was last modified on 24 . 2025 . by MDN contributors.
Your blueprint for a better internet.
Portions of this content are 19982026 by individual mozilla.org contributors. Content available under a Creative Commons license.
| Web Proxy Viewer | New URL | Original Page |