The _________ method is used to execute a function on each item in a Set.

  • forEach
  • execute
  • loop
  • iterate
The correct method is forEach. The forEach method in Set allows you to execute a provided function once for each element in the Set, in insertion order. Example: mySet.forEach((value) => console.log(value));.
Add your answer
Loading...

Leave a comment

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