console.log(is_Blank(''));
console.log(is_Blank('abc'));
function is_Blank(str)
{
var temp = str.split('');
console.log(temp.length);
if(temp.length>0)
{
return false;
}
else
{
return true;
}
}
To embed this program on your website, copy the following code and paste it into your website's HTML: