Help for this page

Select Code to Download


  1. or download this
    condition || condition || condition
    
  2. or download this
    if ($genres[0] eq 'Science Fiction' || $genres[0] eq 'Sci-Fi' || or $g
    +enres[0] eq 'Fantasy') {
    
  3. or download this
    # Either
    if ($genres[0] =~ /^ (?: Science\ Fiction | Sci-Fi | Fantasy ) $/x) {
    
    # or
    if (grep $genres[0] eq $_, 'Science Fiction', 'Sci-Fi', 'Fantasy') {