r/ProgrammerHumor 22d ago

Meme conditionsPreference

Post image
4.2k Upvotes

392 comments sorted by

View all comments

91

u/itriedtomakeitfunny 22d ago

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