静态
Reflect
.deleteProperty()
method allows to delete properties. It is like the
delete
operator
as a function.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
Reflect.deleteProperty(target, propertyKey)
target
The target object on which to delete the property.
propertyKey
The name of the property to be deleted.
A
布尔
indicating whether or not the property was successfully deleted.
A
TypeError
, if
target
is not an
Object
.
Reflect.deleteProperty
method allows you to delete a property on an object. It returns a
布尔
indicating whether or not the property was successfully deleted. It is almost identical to the non-strict
delete
operator
.
Reflect.deleteProperty()
let obj = { x: 1, y: 2 }
Reflect.deleteProperty(obj, 'x') // true
obj // { y: 2 }
let arr = [1, 2, 3, 4, 5]
Reflect.deleteProperty(arr, '3') // true
arr // [1, 2, 3, undefined, 5]
// Returns true if no such property exists
Reflect.deleteProperty({}, 'foo') // true
// Returns false if a property is unconfigurable
Reflect.deleteProperty(Object.freeze({foo: 1}), 'foo') // false
| 规范 |
|---|
|
ECMAScript (ECMA-262)
The definition of 'Reflect.deleteProperty' in that specification. |
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
deleteProperty
|
Chrome 49 | Edge 12 | Firefox 42 | IE No | Opera 36 | Safari 10 | WebView Android 49 | Chrome Android 49 | Firefox Android 42 | Opera Android 36 | Safari iOS 10 | Samsung Internet Android 5.0 | nodejs 6.0.0 |
完整支持
不支持
Reflect
Object
Object.prototype.__defineGetter__()
Object.prototype.__defineSetter__()
Object.prototype.__lookupGetter__()
Object.prototype.__lookupSetter__()
Object.prototype.hasOwnProperty()
Object.prototype.isPrototypeOf()
Object.prototype.propertyIsEnumerable()
Object.prototype.toLocaleString()
Object.prototype.toSource()
Object.prototype.toString()
Object.prototype.valueOf()
Object.setPrototypeOf()