Introduction
You use 'each' to repeat a set of actions for every item in a list or collection. It helps you handle many items one by one easily.
When you want to print every name in a list of friends.
When you need to add a number to each item in a list of prices.
When you want to check each word in a sentence for a condition.
When you want to perform the same task on every element in an array.