Help for this page

Select Code to Download


  1. or download this
    $foo = shift || 1;
    # is the same as
    $foo = (shift || 1);
    
  2. or download this
    $foo = shift or 1;
    # is the same as
    ($foo = shift) or 1;