Last active: 2 years ago
ForEach add item into a Set without anonymous arrow function.
array.forEach(item => mySet.add(item)) // alternative, without anonymous arrow function array.forEach(mySet.add, mySet)