Testing if current page is the static page set as home page

You can use the function is_front_page().

Put this where you want to check if is frontpage

if( is_front_page() ) {
    echo 'I am the frontpage';
}

It returns TRUE when the main blog page is being displayed and the Settings->Reading->Front page displays is set to “Your latest posts”, or when is set to “A static page”