Conditional Statements

Cheers guy’s this helped me a lot, I used the below which works great, any improvements appreciated.

    <?php 
          $cat1 = array('category1', 'category2');

           if( has_term( $cat1, 'my_custom_post_type' ) ) {
                  //do something
         } else { //do somthing else}?>