JavaScript weakSet delete() Method Last Updated : 22 Mar, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report JavaScript weakSet.delete() method is used to delete a specific element from a weakSet object. The WeakSet object lets you store weakly held objects in a collection. Syntax: weakSet.delete(value); Parameters: This method accepts a single parameter value. value: This value will be deleted from the weakset object. Return Values: It returns true if the element has been removed successfully from the weakset object and false if the element has not been removed successfully or the element is not found in the weakset. Below are examples of weakSet.delete() method: Example 1: javascript function gfg() { const A = new WeakSet(); const B = {}; A.delete(B); console.log(A.has(B)); } gfg(); Output: false Example 2: Here output is true at first which means that element "B" has been set into the weakSet object successfully and after it is false it says that the element "B" has been deleted successfully from the weakSet object. javascript // Constructing weakSet() object const A = new WeakSet(); // Creating a new element const B = {}; // Adding the element to the weakset object A.add(B); // Testing whether the element has been // set into the weakset object or not console.log(A.has(B)); // Deleting B form the weakSet() object A.delete(B); // Testing whether the element "B" has been deleted or not console.log(A.has(B)); Output: true false Supported Browsers: Google Chrome 36 and aboveFirefox 34 and aboveApple Safari 9 and aboveOpera 23 and aboveEdge 12 and above We have a complete list of Javascript weakSet methods, to check those please go through this JavaScript WeakSet Complete Reference article. Comment More infoAdvertise with us Next Article JavaScript weakSet has() Method S ShivamKD Follow Improve Article Tags : JavaScript Web Technologies JavaScript-WeakSet JavaScript-Methods Similar Reads JavaScript WeakSet() Constructor JavaScript WeakSet Constructor is used to create a weakset that is similar to the set as it does not contain duplicate objects. It is different from the set as it stores a collection of weakly held objects instead of an object of a particular type. We can only create a WeakSet with the new keyword o 2 min read JavaScript WeakSet constructor Property JavaScript WeakSet constructor property is used to return the WeakSet constructor function for the object. The function returned by this property is just the reference, not the actual WeakSet. It is an object property of JavaScript and can be used with Strings, Numbers, etc. Syntax: weakset.construc 1 min read JavaScript weakSet add() Method Javascript weakSet.add() is used to add an object at the end of the object WeakSet. The WeakSet object lets you store weakly held objects in a collection. Syntax: weakSet.add(A);Parameters: This method accepts a single parameter value. value: This value will be added to the weakset object. Return Va 2 min read JavaScript weakSet delete() Method JavaScript weakSet.delete() method is used to delete a specific element from a weakSet object. The WeakSet object lets you store weakly held objects in a collection. Syntax: weakSet.delete(value); Parameters: This method accepts a single parameter value. value: This value will be deleted from the we 2 min read JavaScript weakSet has() Method JavaScript weakSet.has() method is used to return a boolean value indicating whether an object is present in a weakSet or not. The WeakSet object lets you store weakly held objects in a collection. Syntax: weakSet.has(value); Parameters: This method accepts a single parameter value. value: This valu 2 min read Like