vote up 0 vote down star

Like VB has operators AndAlso and OrElse, that perform short-circuiting logical conjunction, where can equivalent operators be found in JS / AS?

flag

2 Answers

vote up 2 vote down check

The normal && and || operators do short circuit evaluation.

link|flag
vote up 1 vote down

From what I gather, JS and AS use short-circuiting by default.

Defaults might be a good example:

var value = input || false;  // defaults: non-zero `input` or `false`

Ternary is another -- only the block needed is executed:

return typeof(value) == 'string' ? value.substr(0, 2) : '';
link|flag
The ternary is an evil eveeeel statement that should be avoided at all costs imo. Just too freaking hard to read! I've lost count of the number of bugs I've found in code because someone thought they'd be cute and use the ternary... – GeoffreyF67 Jan 28 at 7:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.