Saved Bookmarks
| 1. |
Explain WeakSet in javascript. |
|
Answer» In javascript, a Set is a collection of unique and ordered elements. Just like Set, WeakSet is also a collection of unique and ordered elements with some key differences:
console.log(newSet);// Outputs Set {4,5,6,7} const newSet2 = new WeakSet([3, 4, 5]); //Throws an error let obj1 = {message:"Hello world"}; const newSet3 = new WeakSet([obj1]); console.log(newSet3.has(obj1)); // true |
|