Tagged Questions

128
votes
39answers
8k views

Should a function have only one return statement ?

Are there good reasons why it's better practice to have only one return statement in a function ? Or is it OK to return from a function as soon as it is logically correct to do s …
10
votes
22answers
728 views

What to put in the IF block and what to put in the ELSE block?

This is a minor style question, but every bit of readability you add to your code counts. So if you've got: if (condition) then { // do stuff } else { // do other stuff } …
3
votes
6answers
967 views

Javascript: Trigger action on function exit

Is there a way to listen for a javascript function to exit? A trigger that could be setup when a function has completed? I am attempting to use a user interface obfuscation techni …