I'm trying to include a couple of conditions in my code excluding only android visitors. I put this code but the first script in else condition is not working.
<script type='text/javascript'>
if( /Android/.test(navigator.userAgent) ) {
// some code..
}else
{
<script type="text/javascript" src="link"></script>
<script type="text/javascript" src="link"></script>
}
</script>