Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Perl Idioms Explained - && and || "Short Circuit" operators

by Abigail-II (Bishop)
on Oct 22, 2003 at 21:31 UTC ( [id://301380]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    ---------------------------------------------------------
    $this && $that   |    If $this is true, and $that is true
    ...
                     |    If $that evaluates true, return 
                     |    the value of $that.
    ---------------------------------------------------------
    
  2. or download this
    ---------------------------------------------------------
    $this && $that   |    If $this is true, return $that,          
    ...
    $this || $that   |    If $this is true, return $this,
                     |    else return $that.
    ---------------------------------------------------------
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://301380]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-04-26 06:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found