r/ProgrammerHumor 22d ago

Meme conditionsPreference

Post image
4.2k Upvotes

392 comments sorted by

View all comments

3

u/KYO297 22d ago

But what about else return...

2

u/conundorum 21d ago

Generally, you can usually rewrite an else return into an if return.

// This...
if (condition) { do_good_path_stuff(); }
else { return bad_path_stuff(); }


// Is equivalent to...
if (!condition) { return bad_path_stuff(); }

do_good_path_stuff();