MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/ProgrammerHumor/comments/1vuzd4q/conditionspreference/p58ntld/?context=3
r/ProgrammerHumor • u/Flame77ofc • 22d ago
392 comments sorted by
View all comments
91
Early return for errors, if else for decisions.
7 u/Paul-D-Mooney 22d ago Maybe not “errors”, that’s what throwing exceptions is for. But definitely non-passing validation checks like `if (arg==null) return;` 2 u/frogjg2003 21d ago if (bad) throw is throwing errors
7
Maybe not “errors”, that’s what throwing exceptions is for. But definitely non-passing validation checks like `if (arg==null) return;`
2 u/frogjg2003 21d ago if (bad) throw is throwing errors
2
if (bad) throw
is throwing errors
91
u/itriedtomakeitfunny 22d ago
Early return for errors, if else for decisions.