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));.
Loading...
Related Quiz
- Consider a function that fetches user data from an API. How can this function be refactored to adhere to the principles of pure functions?
- A function that takes another function as an argument is called a __________ function.
- How can you iterate over the elements of a Set in JavaScript?
- What is the primary purpose of the spread operator in ES6?
- What are the first and second arguments of a tag function in a tagged template literal?