SyntaxError: applying the 'delete' operator to an unqualified name is deprecated

错误提示

SyntaxError: applying the 'delete' operator to an unqualified name is deprecated (Firefox)
SyntaxError: Delete of an unqualified identifier in strict mode. (Chrome)

错误类型

SyntaxError 仅出现在严格模式下。

哪里出错了?

在 JavaScript 中,普通变量是不能通过 delete 操作符来删除的。在严格模式下,试图去删除一个变量会报错,这是不允许的。

delete 操作符只能用于删除对象中的属性。只有可配置的对象属性才“符合”被删除的条件。

与一般流行的观点相反的是,delete 操作符与直接释放内存无关。内存管理是通过切断引用来间接实现的。可以参考内存管理页面与 delete 操作符页面来获取更多的细节信息。

这个错误提示只出现于严格模式。在非严格模式下,该操作返回 false。

示例

在 JavaScript 中,普通变量是不能删除的,在严格模式下会报错:

js
"use strict";

var x;

// ...

delete x;

// SyntaxError: applying the 'delete' operator to an unqualified name
// is deprecated

要释放变量引用的内容,可以将变量值设置为 null:

js
"use strict";

var x;

// ...

x = null;

// x can be garbage collected

相关内容