Introduction
Using return inside loops lets you stop the method and give back a result as soon as you find what you need.
When searching for a specific item in a list and you want to stop once found.
When checking conditions in a loop and want to exit early if a condition is met.
When processing data and you want to return a result immediately without finishing the whole loop.