Q3: Consider an application that monitors the status of DOM elements. How would a WeakSet be beneficial in this context?

  • WeakSet
  • Set
  • Both WeakSet and Set
  • Neither WeakSet nor Set
In the context of monitoring DOM element status, a WeakSet is beneficial. This is because a WeakSet can hold references to DOM elements without preventing them from being garbage collected when they are removed from the DOM. As DOM elements are added and removed dynamically, a WeakSet ensures that the references do not cause memory leaks. If a DOM element is removed from the document, its reference in the WeakSet becomes automatically eligible for garbage collection. A Set, on the other hand, would keep references even if the DOM elements are removed, potentially leading to memory issues in the long run.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *