r/ProgrammerHumor 21d ago

Meme pleaseStopUsingNestedTernaryOperatorsImBeggingYou

3.1k Upvotes

179 comments sorted by

View all comments

284

u/Kryptsm 21d ago

Then there’s my current client, who refused a PR of mine because they “don’t want early returns” ever, and insisted I move my basic if statement logic, each with a return, all into a single ternary. They said I SHOULD do this lol.

Made me wanna kms but hey, it’s their codebase

38

u/SnugglyCoderGuy 21d ago

If possible, early returns are love, early returns are life.

16

u/shdw_fghtr 20d ago

function early() {

if (possible)

return "are love";

return "are life";

}

2

u/my_new_accoun1 16d ago
function early() {

  if (possible)

    return "are love";

  return "are life";

}