You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compares two expressions and returns <b>true</b> if one or both evaluate to <b>true</b>. Returns <b>false</b> only if both expressions are <b>false</b>. The following list shows all possible combinations:<br /><br /><tt>true || false // Evaluates true because the first is true <br />false || true // Evaluates true because the second is true <br />true || true // Evaluates true because both are true <br />false || false // Evaluates false because both are false</tt>