delete()
method removes the specified element from a
Set
对象。
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.
mySet.delete(value);
value
mySet
.
返回
true
if
value
was successfully removed from
mySet
; otherwise
false
.
delete()
方法
const mySet = new Set();
mySet.add('foo');
mySet.delete('bar'); // Returns false. No "bar" element found to be deleted.
mySet.delete('foo'); // Returns true. Successfully removed.
mySet.has('foo'); // Returns false. The "foo" element is no longer present.
Let's checkout below how to delete an Object from a Set.
const setObj = new Set(); // Create a New Set.
setObj.add({x: 10, y: 20}); // Add object in the set.
setObj.add({x: 20, y: 30}); // Add object in the set.
// Delete any point with `x > 10`.
setObj.forEach(function(point){
if (point.x > 10){
setObj.delete(point)
}
})
| 规范 |
|---|
|
ECMAScript (ECMA-262)
The definition of 'Set.prototype.delete' in that specification. |
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
delete
|
Chrome 38 | Edge 12 | Firefox 13 | IE 11 | Opera 25 | Safari 8 | WebView Android 38 | Chrome Android 38 | Firefox Android 14 | Opera Android 25 | Safari iOS 8 | Samsung Internet Android 3.0 |
nodejs
0.12
|
完整支持
用户必须明确启用此特征。
Set
Function
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()