Tagged Questions

326
votes
48answers
28k views

Should a function have only one return statement? [closed]

Are there good reasons why it's a better practice to have only one return statement in a function? Or is it okay to return from a function as soon as it is logically correct to do so, meaning there ...