Help for this page

Select Code to Download


  1. or download this
    'b' => exists($tests{'b'}) && defined($m=$tests{'b'}) ? $m : 0,
    
  2. or download this
    'b' => (defined $tests{'b'}) ? $tests{'b'} : 0,
    
  3. or download this
    b => $tests{b} // 0,