Beginner, whenever possible, use everyItem() to apply a setting to a collection, as it is imensely faster than converting the collection to an array an iterating it. It's the difference between applying the setting in one step for all the colection and applying it as a separate step for each member of the collection. For a 100 members collection, that would mean 99 extra steps.
↧