Like VB has operators AndAlso and OrElse, that perform short-circuiting logical conjunction, where can equivalent operators be found in JS / AS?
|
|
|
|
|
|
|
The normal && and || operators do short circuit evaluation. |
||
|
|
|
|
From what I gather, JS and AS use short-circuiting by default. Defaults might be a good example:
Ternary is another -- only the block needed is executed:
|
||
|
