User Guide

66 Chapter 2: ActionScript Language Reference
}
function fx2():Boolean {
trace("fx2 called");
return true;
}
if (fx1() || fx2()) {
trace("IF statement entered");
}
/* The following is sent to the Output panel:
fx1 called
IF statement entered
*/
See also
! (logical NOT), != (inequality), !== (strict inequality), && (logical AND), == (equality), ===
(strict equality)