Early Return from Functions Return early when result is determined to skip unnecessary processing. This optimization is especially valuable when the skipped branch is frequently taken or when the deferred operation is expensive. Incorrect (processes all items even after finding answer): Correct (returns immediately on first error): ---