Coding Trick Alert! "Early Returns" vs. "If-Else" Statements
As developers, we often struggle with organizing our code. A simple yet effective trick to keep things tidy is using early returns instead of nested if-else statements. Early returns allow you to handle error cases upfront and focus on the ideal scenario at the end. This coding technique can greatly improve the readability and maintainability of your code.
Source: https://dev.to/tymzap/dont-ever-use-if-else-use-this-instead-512h